24 lines
593 B
TOML
24 lines
593 B
TOML
[package]
|
|
name = "redbear-traceroute"
|
|
version = "0.3.1"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "redbear_traceroute"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "redbear-traceroute"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
|
|
[target.'cfg(target_os = "redox")'.dependencies]
|
|
libc = "0.2"
|
|
libredox = { path = "../../../../../local/sources/libredox" }
|
|
syscall = { path = "../../../../../local/sources/syscall", package = "redox_syscall", features = ["std"] }
|
|
[patch.crates-io]
|
|
libredox = { path = "../../../../../local/sources/libredox" }
|
|
redox_syscall = { path = "../../../../../local/sources/syscall" }
|