diff --git a/Cargo.lock b/Cargo.lock index 9b24077c..90501109 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2037,9 +2037,9 @@ dependencies = [ [[package]] name = "crypto-bigint" -version = "0.7.0-rc.13" +version = "0.7.0-rc.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2bb4138de6db76c8155b4423e967049fbef2cf84ad6af7f552f73a161941b72" +checksum = "c9c6daa2049db6a5fad90a981b8c63f023dbaf75a0fae73db4dcf234556fc957" dependencies = [ "ctutils", "num-traits", @@ -2075,7 +2075,7 @@ version = "0.7.0-pre.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da0b07a7a616370e8b6efca0c6a25e5f4c6d02fde11f3d570e4af64d8ed7e2e9" dependencies = [ - "crypto-bigint 0.7.0-rc.13", + "crypto-bigint 0.7.0-rc.14", "libm", "rand_core 0.10.0-rc-3", ] @@ -3274,7 +3274,6 @@ dependencies = [ "rustfs-common", "rustfs-ecstore", "rustfs-filemeta", - "rustfs-iam", "rustfs-lock", "rustfs-madmin", "rustfs-protos", @@ -7520,7 +7519,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d27d813937fdf8e9ad15e3e422a55da4021d29639000139ca19d99f3949060da" dependencies = [ "const-oid 0.10.1", - "crypto-bigint 0.7.0-rc.13", + "crypto-bigint 0.7.0-rc.14", "crypto-primes", "digest 0.11.0-rc.5", "pkcs1 0.8.0-rc.4", @@ -7778,7 +7777,6 @@ dependencies = [ "moka", "pin-project-lite", "pprof", - "rand 0.10.0-rc.6", "reqwest", "rmp-serde", "russh", @@ -8968,11 +8966,12 @@ dependencies = [ [[package]] name = "serial_test" -version = "3.2.0" +version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b258109f244e1d6891bf1053a55d63a5cd4f8f4c30cf9a1280989f80e7a1fa9" +checksum = "0d0b343e184fc3b7bb44dff0705fffcf4b3756ba6aff420dddd8b24ca145e555" dependencies = [ - "futures", + "futures-executor", + "futures-util", "log", "once_cell", "parking_lot", @@ -8982,9 +8981,9 @@ dependencies = [ [[package]] name = "serial_test_derive" -version = "3.2.0" +version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d69265a08751de7844521fd15003ae0a888e035773ba05695c5c759a6f89eef" +checksum = "6f50427f258fb77356e4cd4aa0e87e2bd2c66dbcee41dc405282cae2bfc26c83" dependencies = [ "proc-macro2", "quote", @@ -9384,7 +9383,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ad6a09263583e83e934fcd436b7e3bb9d69602e2feef3787adb615c1fe3a343" dependencies = [ "base64ct", - "crypto-bigint 0.7.0-rc.13", + "crypto-bigint 0.7.0-rc.14", "digest 0.11.0-rc.5", "pem-rfc7468 1.0.0", "subtle", diff --git a/Cargo.toml b/Cargo.toml index b4701e1d..90ec9065 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -225,7 +225,7 @@ rumqttc = { version = "0.25.1" } rust-embed = { version = "8.9.0" } rustc-hash = { version = "2.1.1" } s3s = { version = "0.13.0-alpha", features = ["minio"], git = "https://github.com/s3s-project/s3s.git", branch = "main" } -serial_test = "3.2.0" +serial_test = "3.3.1" shadow-rs = { version = "1.5.0", default-features = false } siphasher = "1.0.1" smallvec = { version = "1.15.1", features = ["serde"] } diff --git a/crates/e2e_test/Cargo.toml b/crates/e2e_test/Cargo.toml index a25c8636..8fa99d21 100644 --- a/crates/e2e_test/Cargo.toml +++ b/crates/e2e_test/Cargo.toml @@ -26,7 +26,6 @@ workspace = true [dependencies] rustfs-ecstore.workspace = true rustfs-common.workspace = true -rustfs-iam.workspace = true flatbuffers.workspace = true futures.workspace = true rustfs-lock.workspace = true @@ -56,4 +55,4 @@ suppaftp.workspace = true rcgen.workspace = true anyhow.workspace = true rustls.workspace = true -rustls-pemfile.workspace = true \ No newline at end of file +rustls-pemfile.workspace = true diff --git a/rustfs/Cargo.toml b/rustfs/Cargo.toml index b5109926..c50548cd 100644 --- a/rustfs/Cargo.toml +++ b/rustfs/Cargo.toml @@ -115,7 +115,6 @@ md5.workspace = true mime_guess = { workspace = true } moka = { workspace = true } pin-project-lite.workspace = true -rand = { workspace = true } rust-embed = { workspace = true, features = ["interpolate-folder-path"] } s3s.workspace = true shadow-rs = { workspace = true, features = ["build", "metadata"] }