Use workspace dependencies for many common crates
This commit is contained in:
+6
-6
@@ -8,13 +8,13 @@ name = "smolnetd"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
redox_event = "0.4.1"
|
||||
redox_event.workspace = true
|
||||
daemon = { path = "../daemon" }
|
||||
redox_syscall = { version = "0.6", features = ["std"] }
|
||||
redox-log = "0.1"
|
||||
libredox = { version = "0.1.3", features = ["mkns"] }
|
||||
redox_syscall = { workspace = true, features = ["std"] }
|
||||
redox-log.workspace = true
|
||||
libredox = { workspace = true, features = ["mkns"] }
|
||||
anyhow = "1.0.81"
|
||||
redox-scheme = "0.8.3"
|
||||
redox-scheme.workspace = true
|
||||
|
||||
[dependencies.log]
|
||||
version = "0.4"
|
||||
@@ -35,4 +35,4 @@ features = [
|
||||
#For debugging: "log", "verbose"
|
||||
|
||||
[target.'cfg(target_os = "redox")'.dependencies]
|
||||
redox-rt = { git = "https://gitlab.redox-os.org/redox-os/relibc.git", default-features = false }
|
||||
redox-rt = { workspace = true, default-features = false }
|
||||
|
||||
Reference in New Issue
Block a user