Simplified process startup on macOS and Linux
This commit is contained in:
parent
9e03c9680c
commit
7cc1f3119e
40 changed files with 1343 additions and 1157 deletions
|
|
@ -12,46 +12,44 @@ crate-type = ["lib", "staticlib"]
|
|||
anyhow = "1.0"
|
||||
tokio = { version = "1.21", features = ["rt", "macros", "sync", "io-util", "rt-multi-thread", "time", "tracing"] }
|
||||
tun = { version = "0.1", path = "../tun", features = ["serde", "tokio"] }
|
||||
clap = { version = "4.3.2", features = ["derive"] }
|
||||
clap = { version = "4.4", features = ["derive"] }
|
||||
tracing = "0.1"
|
||||
tracing-log = "0.1"
|
||||
tracing-journald = "0.3"
|
||||
tracing-oslog = {git = "https://github.com/Stormshield-robinc/tracing-oslog"}
|
||||
tracing-subscriber = { version = "0.3" , features = ["std", "env-filter"]}
|
||||
env_logger = "0.10"
|
||||
tracing-oslog = { git = "https://github.com/Stormshield-robinc/tracing-oslog" }
|
||||
tracing-subscriber = { version = "0.3" , features = ["std", "env-filter"] }
|
||||
log = "0.4"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
blake2 = "0.10.6"
|
||||
chacha20poly1305 = "0.10.1"
|
||||
rand = "0.8.5"
|
||||
rand_core = "0.6.4"
|
||||
aead = "0.5.2"
|
||||
x25519-dalek = { version = "2.0.0", features = ["reusable_secrets", "static_secrets"] }
|
||||
ring = "0.17.7"
|
||||
parking_lot = "0.12.1"
|
||||
serde_json = "1.0"
|
||||
blake2 = "0.10"
|
||||
chacha20poly1305 = "0.10"
|
||||
rand = "0.8"
|
||||
rand_core = "0.6"
|
||||
aead = "0.5"
|
||||
x25519-dalek = { version = "2.0", features = ["reusable_secrets", "static_secrets"] }
|
||||
ring = "0.17"
|
||||
parking_lot = "0.12"
|
||||
hmac = "0.12"
|
||||
ipnet = { version = "2.8.0", features = ["serde"] }
|
||||
base64 = "0.21.4"
|
||||
fehler = "1.0.0"
|
||||
ip_network_table = "0.2.0"
|
||||
ip_network = "0.4.0"
|
||||
async-channel = "2.1.1"
|
||||
base64 = "0.21"
|
||||
fehler = "1.0"
|
||||
ip_network_table = "0.2"
|
||||
ip_network = "0.4"
|
||||
async-channel = "2.1"
|
||||
schemars = "0.8"
|
||||
futures = "0.3.28"
|
||||
uuid = { version = "1.6.1", features = ["v4"] }
|
||||
console-subscriber = { version = "0.2.0" , optional = true}
|
||||
once_cell = "1.19"
|
||||
console-subscriber = { version = "0.2.0" , optional = true }
|
||||
console = "0.15.8"
|
||||
|
||||
[target.'cfg(target_os = "linux")'.dependencies]
|
||||
caps = "0.5.5"
|
||||
libsystemd = "0.6"
|
||||
caps = "0.5"
|
||||
libsystemd = "0.7"
|
||||
tracing-journald = "0.3"
|
||||
|
||||
[target.'cfg(target_vendor = "apple")'.dependencies]
|
||||
nix = { version = "0.26.2" }
|
||||
nix = { version = "0.27" }
|
||||
|
||||
[dev-dependencies]
|
||||
insta = { version = "1.32.0", features = ["yaml"] }
|
||||
etherparse = "0.12"
|
||||
insta = { version = "1.32", features = ["yaml"] }
|
||||
|
||||
[package.metadata.generate-rpm]
|
||||
assets = [
|
||||
|
|
@ -63,4 +61,4 @@ post_install_script = "../package/rpm/post_install"
|
|||
pre_uninstall_script = "../package/rpm/pre_uninstall"
|
||||
|
||||
[features]
|
||||
tokio-console = ["dep:console-subscriber"]
|
||||
tokio-console = ["dep:console-subscriber"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue