Remove unused dependencies based on `cargo +nightly udeps --all-targets --workspace --all-features`

pull/118/head
Chip Senkbeil 2 years ago
parent ea2e128bc4
commit 2045272322
No known key found for this signature in database
GPG Key ID: 35EF1F8EC72A4131

46
Cargo.lock generated

@ -430,33 +430,6 @@ dependencies = [
"winapi",
]
[[package]]
name = "ciborium"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0c137568cc60b904a7724001b35ce2630fd00d5d84805fbb608ab89509d788f"
dependencies = [
"ciborium-io",
"ciborium-ll",
"serde",
]
[[package]]
name = "ciborium-io"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "346de753af073cc87b52b2083a506b38ac176a44cfb05497b622e27be899b369"
[[package]]
name = "ciborium-ll"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213030a2b5a4e0c0892b6652260cf6ccac84827b83a85a534e178e3906c4cf1b"
dependencies = [
"ciborium-io",
"half",
]
[[package]]
name = "cipher"
version = "0.4.3"
@ -836,7 +809,6 @@ dependencies = [
"async-trait",
"bitflags",
"bytes",
"ciborium",
"clap",
"derive_more",
"distant-net",
@ -845,7 +817,6 @@ dependencies = [
"hex",
"indoc",
"log",
"normpath",
"notify",
"once_cell",
"portable-pty",
@ -895,7 +866,6 @@ name = "distant-ssh2"
version = "0.17.0"
dependencies = [
"anyhow",
"assert_cmd",
"assert_fs",
"async-compat",
"async-once-cell",
@ -909,7 +879,6 @@ dependencies = [
"indoc",
"log",
"once_cell",
"openssl-src",
"predicates",
"rand 0.8.5",
"rpassword",
@ -1340,12 +1309,6 @@ dependencies = [
"subtle",
]
[[package]]
name = "half"
version = "1.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
[[package]]
name = "hashbrown"
version = "0.12.1"
@ -1680,15 +1643,6 @@ version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
[[package]]
name = "normpath"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04aaf5e9cb0fbf883cc0423159eacdf96a9878022084b35c462c428cab73bcaf"
dependencies = [
"winapi",
]
[[package]]
name = "notify"
version = "5.0.0-pre.15"

@ -18,14 +18,12 @@ schemars = ["dep:schemars", "distant-net/schemars"]
async-trait = "0.1.56"
bitflags = "1.3.2"
bytes = "1.1.0"
ciborium = "0.2.0"
derive_more = { version = "0.99.17", default-features = false, features = ["as_mut", "as_ref", "deref", "deref_mut", "display", "from", "error", "into", "into_iterator", "is_variant", "try_into"] }
distant-net = { version = "=0.17.0", path = "../distant-net" }
futures = "0.3.16"
hex = "0.4.3"
log = "0.4.14"
notify = { version = "5.0.0-pre.15", features = ["serde"] }
normpath = "0.3.2"
once_cell = "1.8.0"
portable-pty = "0.7.0"
rand = { version = "0.8.4", features = ["getrandom"] }

@ -24,7 +24,6 @@ distant-core = { version = "=0.17.0", path = "../distant-core" }
futures = "0.3.16"
hex = "0.4.3"
log = "0.4.14"
openssl-src = "=300.0.7"
rand = { version = "0.8.4", features = ["getrandom"] }
rpassword = "6.0.1"
shell-words = "1.0"
@ -38,7 +37,6 @@ serde = { version = "1.0.126", features = ["derive"], optional = true }
[dev-dependencies]
anyhow = "1.0.58"
assert_cmd = "2.0.0"
assert_fs = "1.0.4"
dunce = "1.0.2"
flexi_logger = "0.19.4"

Loading…
Cancel
Save