Remove unused dependencies

Identified with cargo-udeps.  Thanks Milan for telling me about it!

I left irdest-gtk's dependency on irdest-sdk, because I figure it's
only a matter of time until that's used.

Thanks-to: Milan Pässler <milan@petabyte.dev>
develop
Alyssa Ross 3 years ago committed by Katharina Fey
parent 4355439c28
commit 8f008bee57
Signed by: kookie
GPG Key ID: F972AEEA2887D547
  1. 834
      Cargo.lock
  2. 3
      clients/hubd/Cargo.toml
  3. 6
      irdest-core/Cargo.toml
  4. 4
      irdest-core/types/Cargo.toml
  5. 1
      netmods/netmod-mem/Cargo.toml
  6. 1
      netmods/netmod-tcp/Cargo.toml
  7. 1
      netmods/netmod-udp/Cargo.toml
  8. 2
      netmods/netmod-wd/Cargo.toml
  9. 1
      ratman/Cargo.toml
  10. 1
      ratman/configure/Cargo.toml
  11. 1
      ratman/harness/Cargo.toml
  12. 1
      ratman/netmod/Cargo.toml
  13. 1
      rpc-core/irpc-broker/Cargo.toml
  14. 3
      rpc-core/irpc-sdk/Cargo.toml
  15. 2
      utils/alexandria/Cargo.toml

834
Cargo.lock generated

File diff suppressed because it is too large Load Diff

@ -17,8 +17,5 @@ ratman-configure = { path = "../../ratman/configure" }
async-std = { version = "1.0", features = ["attributes"] }
clap = { version = "2.0", features = ["wrap_help", "color"] }
directories-next = "2.0"
igd = "0.11"
ipnetwork = "0.17"
pnet = "0.27"
tracing = "0.1"
tracing-subscriber = { version = "0.2", features = ["fmt", "env-filter"] }

@ -9,7 +9,6 @@ edition = "2018"
[dependencies]
alexandria = { version = "0.2", path = "../utils/alexandria" }
ircore-types = { version = "0.1", path = "types" }
netmod-mem = { version = "0.4", path = "../netmods/netmod-mem", optional = true }
irpc-sdk = { version = "0.1", path = "../rpc-core/irpc-sdk", optional = true }
ratman = { version = "0.2", path = "../ratman" }
@ -18,11 +17,8 @@ async-trait = "0.1"
base64 = "0.12"
bincode = "1.0"
blake2 = "0.8"
crossbeam-channel = "0.5"
futures = "0.3"
hex = "0.4"
jni = { version = "0.14", optional = true, default-features = false }
mime = "0.3"
rand = "0.7"
serde = { version = "1.0", features = [ "derive" ] }
sodiumoxide = "0.2.5"
@ -42,4 +38,4 @@ default = ["generate-message", "testing", "rpc"] # TODO: remove rpc default?
ffi-java = ["jni"]
generate-message = []
rpc = ["irpc-sdk"]
testing = ["tempfile", "netmod-mem"]
testing = ["tempfile"]

@ -8,11 +8,9 @@ license = "AGPL-3.0-or-later"
[dependencies]
ratman-identity = { version ="0.6.0", path = "../../ratman/identity", features = ["random"] }
irpc-sdk = { version = "0.1", path = "../../rpc-core/irpc-sdk" }
serde = { version = "1.0", features = ["derive"] }
alexandria-tags = { version = "0.2", path = "../../utils/alexandria-tags" }
serde_json = "1.0"
async-trait = "0.1"
[dev-dependencies]
serde_json = "1.0"
@ -20,4 +18,4 @@ bincode = "1.0"
[features]
# default = ["rpc"]
# rpc = []
# rpc = []

@ -9,6 +9,5 @@ license = "AGPL-3.0"
[dependencies]
async-std = { version = "1.0", features = ["attributes", "unstable"] }
async-trait = "0.1"
crossbeam-channel = "0.5"
ratman-identity = { version ="0.6", path = "../../ratman/identity", package = "ratman-identity", features = [ "digest" ] }
ratman-netmod = { version ="0.5.0", path = "../../ratman/netmod", package = "ratman-netmod" }

@ -17,4 +17,3 @@ byteorder = "1.0"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
tracing = "0.1"
tracing-futures = "0.2"

@ -16,4 +16,3 @@ async-std = { version = "1.0", features = ["unstable"] }
bincode = "1.0"
serde = { version = "1.0", features = ["derive"] }
tracing = "0.1"
tracing-futures = "0.2"

@ -7,8 +7,6 @@ edition = "2018"
license = "AGPL-3.0-or-later"
[dependencies]
jni = { version = "0.14", default-features = false }
bincode = "1.0"
netmod = { version ="0.5.0", path = "../../ratman/netmod", package = "ratman-netmod" }
async-std = { version = "1.0", features = ["unstable"] }
async-trait = "0.1"

@ -10,7 +10,6 @@ edition = "2018"
async-std = { version = "1.0", features = ["std", "unstable"] }
bincode = "1.0"
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
tracing = "0.1"
tracing-futures = "0.2"

@ -8,7 +8,6 @@ license = "AGPL-3.0-or-later"
[dependencies]
async-std = { version = "1.0", features = ["attributes"] }
netmod-mem = { version ="0.4.0", path = "../../netmods/netmod-mem" }
netmod-tcp = { version ="0.4.0", path = "../../netmods/netmod-tcp" }
netmod-udp = { version ="0.2.0", path = "../../netmods/netmod-udp" }
ratman = { version ="0.2.0", path = ".." }

@ -7,7 +7,6 @@ edition = "2018"
license = "AGPL-3.0-or-later"
[dependencies]
arbitrary = "1.0"
ratman = { version = "0.2", path = ".." }
netmod-mem = { version = "0.4", path = "../../netmods/netmod-mem" }
tempfile = "3.0"

@ -12,7 +12,6 @@ license = "AGPL-3.0"
[dependencies]
identity = { version ="0.6.0", path = "../identity", features = ["digest", "random"], package = "ratman-identity" }
conjoiner = { version = "1.0", package = "conjoiner-engine" }
serde = { version = "1.0", features = ["derive"] }
twox-hash = "1.5"
async-trait = "0.1"

@ -12,7 +12,6 @@ irpc-sdk = { path = "../irpc-sdk", version = "0.1", features = ["internals"] }
async-std = { version = "1.0", features = ["attributes"] }
byteorder = "1.0"
capnp = "0.13"
lazy_static = "1.0"
serde = { version = "1.0", features = ["derive"] }
signal-hook = "0.3"

@ -21,6 +21,5 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
async-std = { version = "1.0", features = ["unstable"] }
async-trait = "0.1"
byteorder = "1.0"
tracing = "0.1"
tracing = "0.1"

@ -21,11 +21,9 @@ keybob = "0.4"
serde = { version = "1.0", features = ["derive", "rc"] }
sodiumoxide = "0.2.5"
tracing = "0.1"
tracing-futures = "0.2"
[dev-dependencies]
bincode = "1.0"
ed25519-dalek = "1.0.0-pre.3"
rand = "0.7"
serde_json = "1.0"
tempfile = "3.0"

Loading…
Cancel
Save