mirror of
https://github.com/rosenpass/rosenpass.git
synced 2026-02-27 22:13:12 -08:00
fix: avoid duplicate crates
This commit is contained in:
@@ -91,3 +91,6 @@ procspawn = { version = "1.0.1", features = ["test-support"] }
|
|||||||
wireguard-uapi = { version = "3.0.0", features = ["xplatform"] }
|
wireguard-uapi = { version = "3.0.0", features = ["xplatform"] }
|
||||||
command-fds = "0.2.3"
|
command-fds = "0.2.3"
|
||||||
rustix = { version = "0.38.42", features = ["net", "fs", "process"] }
|
rustix = { version = "0.38.42", features = ["net", "fs", "process"] }
|
||||||
|
futures = "0.3"
|
||||||
|
futures-util = "0.3"
|
||||||
|
x25519-dalek = "2"
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ rosenpass-to = { workspace = true }
|
|||||||
memsec = { workspace = true }
|
memsec = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
rand = "0.8.5"
|
rand = { workspace = true }
|
||||||
|
|
||||||
[lints.rust]
|
[lints.rust]
|
||||||
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(coverage)'] }
|
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(coverage)'] }
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ anyhow = { workspace = true }
|
|||||||
base64ct = { workspace = true }
|
base64ct = { workspace = true }
|
||||||
serde = { workspace = true }
|
serde = { workspace = true }
|
||||||
toml = { workspace = true }
|
toml = { workspace = true }
|
||||||
x25519-dalek = { version = "2", features = ["static_secrets"] }
|
x25519-dalek = { workspace = true, features = ["static_secrets"] }
|
||||||
zeroize = { workspace = true }
|
zeroize = { workspace = true }
|
||||||
|
|
||||||
rosenpass = { workspace = true }
|
rosenpass = { workspace = true }
|
||||||
@@ -26,8 +26,8 @@ rosenpass-wireguard-broker = { workspace = true }
|
|||||||
|
|
||||||
tokio = { workspace = true }
|
tokio = { workspace = true }
|
||||||
|
|
||||||
futures = "0.3"
|
futures = { workspace = true }
|
||||||
futures-util = "0.3"
|
futures-util = { workspace = true }
|
||||||
|
|
||||||
[target.'cfg(any(target_os = "linux", target_os = "freebsd"))'.dependencies]
|
[target.'cfg(any(target_os = "linux", target_os = "freebsd"))'.dependencies]
|
||||||
ctrlc-async = "3.2"
|
ctrlc-async = "3.2"
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ wireguard-uapi = { workspace = true }
|
|||||||
|
|
||||||
# Socket handler only
|
# Socket handler only
|
||||||
rosenpass-to = { workspace = true }
|
rosenpass-to = { workspace = true }
|
||||||
tokio = { version = "1.42.0", features = ["sync", "full", "mio"] }
|
tokio = { workspace = true, features = ["sync", "full", "mio"] }
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
clap = { workspace = true }
|
clap = { workspace = true }
|
||||||
env_logger = { workspace = true }
|
env_logger = { workspace = true }
|
||||||
@@ -28,8 +28,8 @@ derive_builder = { workspace = true }
|
|||||||
postcard = { workspace = true }
|
postcard = { workspace = true }
|
||||||
# Problem in CI, unknown reasons: dependency (libc) specified without providing a local path, Git repository, version, or workspace dependency to use
|
# Problem in CI, unknown reasons: dependency (libc) specified without providing a local path, Git repository, version, or workspace dependency to use
|
||||||
# Maybe something about the combination of features and optional crates?
|
# Maybe something about the combination of features and optional crates?
|
||||||
rustix = { version = "0.38.42", optional = true }
|
rustix = { workspace = true, optional = true }
|
||||||
libc = { version = "0.2", optional = true }
|
libc = { workspace = true, optional = true }
|
||||||
|
|
||||||
# Mio broker client
|
# Mio broker client
|
||||||
mio = { workspace = true }
|
mio = { workspace = true }
|
||||||
|
|||||||
Reference in New Issue
Block a user