burrow/burrow/Cargo.toml
Sam Poder da065b503f Log "Set" Actions in Tun (Linux)
I've used the log library and its info method.

I've also added but not used env-logger.
2023-06-27 15:42:36 -04:00

20 lines
451 B
TOML

[package]
name = "burrow"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["lib", "staticlib"]
[dependencies]
tokio = { version = "1.21", features = ["rt", "macros"] }
tun = { version = "0.1", path = "../tun" }
clap = { version = "4.3.2", features = ["derive"] }
env_logger = "0.10"
log = "0.4"
[target.'cfg(target_os = "linux")'.dependencies]
caps = "0.5.5"
[target.'cfg(target_vendor = "apple")'.dependencies]
nix = { version = "0.26.2" }