mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-31 09:18:28 +00:00
remove deps (#529)
This commit is contained in:
Generated
-28
@@ -3233,15 +3233,6 @@ dependencies = [
|
|||||||
"num-traits",
|
"num-traits",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "hash32"
|
|
||||||
version = "0.3.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
|
|
||||||
dependencies = [
|
|
||||||
"byteorder",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hashbrown"
|
name = "hashbrown"
|
||||||
version = "0.14.5"
|
version = "0.14.5"
|
||||||
@@ -3263,16 +3254,6 @@ dependencies = [
|
|||||||
"foldhash",
|
"foldhash",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "heapless"
|
|
||||||
version = "0.9.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "b1edcd5a338e64688fbdcb7531a846cfd3476a54784dcb918a0844682bc7ada5"
|
|
||||||
dependencies = [
|
|
||||||
"hash32",
|
|
||||||
"stable_deref_trait",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "heck"
|
name = "heck"
|
||||||
version = "0.5.0"
|
version = "0.5.0"
|
||||||
@@ -6093,22 +6074,17 @@ dependencies = [
|
|||||||
"anyhow",
|
"anyhow",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"chrono",
|
"chrono",
|
||||||
"criterion",
|
|
||||||
"futures",
|
"futures",
|
||||||
"lazy_static",
|
|
||||||
"rand 0.9.2",
|
"rand 0.9.2",
|
||||||
"reqwest",
|
"reqwest",
|
||||||
"rustfs-common",
|
"rustfs-common",
|
||||||
"rustfs-ecstore",
|
"rustfs-ecstore",
|
||||||
"rustfs-filemeta",
|
"rustfs-filemeta",
|
||||||
"rustfs-lock",
|
|
||||||
"rustfs-madmin",
|
"rustfs-madmin",
|
||||||
"rustfs-utils",
|
|
||||||
"s3s",
|
"s3s",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"serial_test",
|
"serial_test",
|
||||||
"sysinfo",
|
|
||||||
"tempfile",
|
"tempfile",
|
||||||
"thiserror 2.0.16",
|
"thiserror 2.0.16",
|
||||||
"time",
|
"time",
|
||||||
@@ -6116,7 +6092,6 @@ dependencies = [
|
|||||||
"tokio-util",
|
"tokio-util",
|
||||||
"tracing",
|
"tracing",
|
||||||
"tracing-subscriber",
|
"tracing-subscriber",
|
||||||
"url",
|
|
||||||
"uuid",
|
"uuid",
|
||||||
"walkdir",
|
"walkdir",
|
||||||
]
|
]
|
||||||
@@ -6338,7 +6313,6 @@ dependencies = [
|
|||||||
"bytes",
|
"bytes",
|
||||||
"crossbeam-queue",
|
"crossbeam-queue",
|
||||||
"futures",
|
"futures",
|
||||||
"heapless",
|
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"parking_lot",
|
"parking_lot",
|
||||||
"rustfs-protos",
|
"rustfs-protos",
|
||||||
@@ -6608,12 +6582,10 @@ dependencies = [
|
|||||||
"flate2",
|
"flate2",
|
||||||
"futures",
|
"futures",
|
||||||
"hex-simd",
|
"hex-simd",
|
||||||
"hickory-proto",
|
|
||||||
"hickory-resolver",
|
"hickory-resolver",
|
||||||
"highway",
|
"highway",
|
||||||
"hmac 0.12.1",
|
"hmac 0.12.1",
|
||||||
"hyper 1.7.0",
|
"hyper 1.7.0",
|
||||||
"hyper-util",
|
|
||||||
"local-ip-address",
|
"local-ip-address",
|
||||||
"lz4",
|
"lz4",
|
||||||
"md-5",
|
"md-5",
|
||||||
|
|||||||
@@ -129,11 +129,8 @@ futures = "0.3.31"
|
|||||||
futures-core = "0.3.31"
|
futures-core = "0.3.31"
|
||||||
futures-util = "0.3.31"
|
futures-util = "0.3.31"
|
||||||
glob = "0.3.3"
|
glob = "0.3.3"
|
||||||
heapless = "0.9.1"
|
|
||||||
hex = "0.4.3"
|
|
||||||
hex-simd = "0.8.0"
|
hex-simd = "0.8.0"
|
||||||
highway = { version = "1.3.0" }
|
highway = { version = "1.3.0" }
|
||||||
hickory-proto = "0.25.2"
|
|
||||||
hickory-resolver = { version = "0.25.2", features = ["tls-ring"] }
|
hickory-resolver = { version = "0.25.2", features = ["tls-ring"] }
|
||||||
hmac = "0.12.1"
|
hmac = "0.12.1"
|
||||||
hyper = "1.7.0"
|
hyper = "1.7.0"
|
||||||
|
|||||||
@@ -17,7 +17,6 @@ rustfs-ecstore = { workspace = true }
|
|||||||
rustfs-common = { workspace = true }
|
rustfs-common = { workspace = true }
|
||||||
rustfs-filemeta = { workspace = true }
|
rustfs-filemeta = { workspace = true }
|
||||||
rustfs-madmin = { workspace = true }
|
rustfs-madmin = { workspace = true }
|
||||||
rustfs-utils = { workspace = true }
|
|
||||||
tokio = { workspace = true, features = ["full"] }
|
tokio = { workspace = true, features = ["full"] }
|
||||||
tokio-util = { workspace = true }
|
tokio-util = { workspace = true }
|
||||||
tracing = { workspace = true }
|
tracing = { workspace = true }
|
||||||
@@ -29,10 +28,7 @@ uuid = { workspace = true, features = ["v4", "serde"] }
|
|||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
async-trait = { workspace = true }
|
async-trait = { workspace = true }
|
||||||
futures = { workspace = true }
|
futures = { workspace = true }
|
||||||
url = { workspace = true }
|
|
||||||
rustfs-lock = { workspace = true }
|
|
||||||
s3s = { workspace = true }
|
s3s = { workspace = true }
|
||||||
lazy_static = { workspace = true }
|
|
||||||
chrono = { workspace = true }
|
chrono = { workspace = true }
|
||||||
rand = { workspace = true }
|
rand = { workspace = true }
|
||||||
reqwest = { workspace = true }
|
reqwest = { workspace = true }
|
||||||
@@ -44,5 +40,3 @@ serial_test = "3.2.0"
|
|||||||
tracing-subscriber = { workspace = true }
|
tracing-subscriber = { workspace = true }
|
||||||
walkdir = "2.5.0"
|
walkdir = "2.5.0"
|
||||||
tempfile = { workspace = true }
|
tempfile = { workspace = true }
|
||||||
criterion = { workspace = true, features = ["html_reports"] }
|
|
||||||
sysinfo = { workspace = true }
|
|
||||||
|
|||||||
@@ -46,4 +46,3 @@ parking_lot.workspace = true
|
|||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
smartstring.workspace = true
|
smartstring.workspace = true
|
||||||
crossbeam-queue = { workspace = true }
|
crossbeam-queue = { workspace = true }
|
||||||
heapless = { workspace = true }
|
|
||||||
|
|||||||
@@ -35,10 +35,8 @@ futures = { workspace = true, optional = true }
|
|||||||
hex-simd = { workspace = true, optional = true }
|
hex-simd = { workspace = true, optional = true }
|
||||||
highway = { workspace = true, optional = true }
|
highway = { workspace = true, optional = true }
|
||||||
hickory-resolver = { workspace = true, optional = true }
|
hickory-resolver = { workspace = true, optional = true }
|
||||||
hickory-proto = { workspace = true, optional = true }
|
|
||||||
hmac = { workspace = true, optional = true }
|
hmac = { workspace = true, optional = true }
|
||||||
hyper = { workspace = true, optional = true }
|
hyper = { workspace = true, optional = true }
|
||||||
hyper-util = { workspace = true, optional = true }
|
|
||||||
local-ip-address = { workspace = true, optional = true }
|
local-ip-address = { workspace = true, optional = true }
|
||||||
lz4 = { workspace = true, optional = true }
|
lz4 = { workspace = true, optional = true }
|
||||||
md-5 = { workspace = true, optional = true }
|
md-5 = { workspace = true, optional = true }
|
||||||
@@ -81,7 +79,7 @@ workspace = true
|
|||||||
default = ["ip"] # features that are enabled by default
|
default = ["ip"] # features that are enabled by default
|
||||||
ip = ["dep:local-ip-address"] # ip characteristics and their dependencies
|
ip = ["dep:local-ip-address"] # ip characteristics and their dependencies
|
||||||
tls = ["dep:rustls", "dep:rustls-pemfile", "dep:rustls-pki-types"] # tls characteristics and their dependencies
|
tls = ["dep:rustls", "dep:rustls-pemfile", "dep:rustls-pki-types"] # tls characteristics and their dependencies
|
||||||
net = ["ip", "dep:url", "dep:netif", "dep:futures", "dep:transform-stream", "dep:bytes", "dep:s3s", "dep:hyper", "dep:hyper-util", "dep:hickory-resolver", "dep:hickory-proto", "dep:moka", "dep:thiserror", "dep:tokio"] # network features with DNS resolver
|
net = ["ip", "dep:url", "dep:netif", "dep:futures", "dep:transform-stream", "dep:bytes", "dep:s3s", "dep:hyper", "dep:hickory-resolver", "dep:moka", "dep:thiserror", "dep:tokio"] # network features with DNS resolver
|
||||||
io = ["dep:tokio"]
|
io = ["dep:tokio"]
|
||||||
path = []
|
path = []
|
||||||
notify = ["dep:hyper", "dep:s3s"] # file system notification features
|
notify = ["dep:hyper", "dep:s3s"] # file system notification features
|
||||||
|
|||||||
Reference in New Issue
Block a user