Remove unused dependencies (#1605)

This commit is contained in:
Paolo Barbolini 2022-01-04 01:56:01 +01:00 committed by GitHub
parent 8e46e17ce0
commit bcb2d8e604
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 6 deletions

3
Cargo.lock generated
View File

@ -2416,9 +2416,7 @@ dependencies = [
"bytes", "bytes",
"chrono", "chrono",
"crc", "crc",
"crossbeam-channel",
"crossbeam-queue", "crossbeam-queue",
"crossbeam-utils",
"digest", "digest",
"dirs", "dirs",
"either", "either",
@ -2445,7 +2443,6 @@ dependencies = [
"memchr", "memchr",
"num-bigint", "num-bigint",
"once_cell", "once_cell",
"parking_lot",
"percent-encoding", "percent-encoding",
"rand", "rand",
"regex", "regex",

View File

@ -112,8 +112,6 @@ byteorder = { version = "1.4.3", default-features = false, features = ["std"] }
chrono = { version = "0.4.19", default-features = false, features = ["clock"], optional = true } chrono = { version = "0.4.19", default-features = false, features = ["clock"], optional = true }
crc = { version = "2.1.0", optional = true } crc = { version = "2.1.0", optional = true }
crossbeam-queue = "0.3.2" crossbeam-queue = "0.3.2"
crossbeam-channel = "0.5.1"
crossbeam-utils = { version = "0.8.5", default-features = false }
digest = { version = "0.9.0", default-features = false, optional = true, features = ["std"] } digest = { version = "0.9.0", default-features = false, optional = true, features = ["std"] }
dirs = { version = "4.0.0", optional = true } dirs = { version = "4.0.0", optional = true }
encoding_rs = { version = "0.8.30", optional = true } encoding_rs = { version = "0.8.30", optional = true }
@ -143,7 +141,6 @@ memchr = { version = "2.4.1", default-features = false }
num-bigint = { version = "0.3.3", default-features = false, optional = true, features = ["std"] } num-bigint = { version = "0.3.3", default-features = false, optional = true, features = ["std"] }
once_cell = "1.9.0" once_cell = "1.9.0"
percent-encoding = "2.1.0" percent-encoding = "2.1.0"
parking_lot = "0.11.2"
rand = { version = "0.8.4", default-features = false, optional = true, features = ["std", "std_rng"] } rand = { version = "0.8.4", default-features = false, optional = true, features = ["std", "std_rng"] }
regex = { version = "1.5.4", optional = true } regex = { version = "1.5.4", optional = true }
rsa = { version = "0.5.0", optional = true } rsa = { version = "0.5.0", optional = true }