diff --git a/Cargo.lock b/Cargo.lock index 7b2e6b65e8..26b00fb984 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1731,12 +1731,9 @@ dependencies = [ [[package]] name = "fastrand" -version = "1.9.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" -dependencies = [ - "instant", -] +checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" [[package]] name = "fd-lock" @@ -1745,7 +1742,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef033ed5e9bad94e55838ca0ca906db0e043f517adda0c8b79c7a8c66c93c1b5" dependencies = [ "cfg-if", - "rustix 0.38.4", + "rustix", "windows-sys 0.48.0", ] @@ -2763,15 +2760,6 @@ dependencies = [ "yaml-rust", ] -[[package]] -name = "instant" -version = "0.1.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" -dependencies = [ - "cfg-if", -] - [[package]] name = "integer-encoding" version = "3.0.4" @@ -2784,17 +2772,6 @@ version = "4.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "924df4f0e24e2e7f9cdd90babb0b96f93b20f3ecfa949ea9e6613756b8c8e1bf" -[[package]] -name = "io-lifetimes" -version = "1.0.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" -dependencies = [ - "hermit-abi", - "libc", - "windows-sys 0.48.0", -] - [[package]] name = "iox_catalog" version = "0.1.0" @@ -3164,7 +3141,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" dependencies = [ "hermit-abi", - "rustix 0.38.4", + "rustix", "windows-sys 0.48.0", ] @@ -3312,12 +3289,6 @@ version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" -[[package]] -name = "linux-raw-sys" -version = "0.3.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" - [[package]] name = "linux-raw-sys" version = "0.4.3" @@ -4788,20 +4759,6 @@ dependencies = [ "semver", ] -[[package]] -name = "rustix" -version = "0.37.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8818fa822adcc98b18fedbb3632a6a33213c070556b5aa7c4c8cc21cff565c4c" -dependencies = [ - "bitflags 1.3.2", - "errno", - "io-lifetimes", - "libc", - "linux-raw-sys 0.3.8", - "windows-sys 0.48.0", -] - [[package]] name = "rustix" version = "0.38.4" @@ -4811,7 +4768,7 @@ dependencies = [ "bitflags 2.3.3", "errno", "libc", - "linux-raw-sys 0.4.3", + "linux-raw-sys", "windows-sys 0.48.0", ] @@ -5740,15 +5697,14 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.6.0" +version = "3.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6" +checksum = "5486094ee78b2e5038a6382ed7645bc084dc2ec433426ca4c3cb61e2007b8998" dependencies = [ - "autocfg", "cfg-if", "fastrand", "redox_syscall 0.3.5", - "rustix 0.37.22", + "rustix", "windows-sys 0.48.0", ] @@ -6918,7 +6874,7 @@ dependencies = [ "regex-syntax 0.7.4", "reqwest", "ring", - "rustix 0.38.4", + "rustix", "rustls", "scopeguard", "serde", diff --git a/clap_blocks/Cargo.toml b/clap_blocks/Cargo.toml index 9c0e516f04..49c6a6cb5c 100644 --- a/clap_blocks/Cargo.toml +++ b/clap_blocks/Cargo.toml @@ -21,7 +21,7 @@ uuid = { version = "1", features = ["v4"] } workspace-hack = { version = "0.1", path = "../workspace-hack" } [dev-dependencies] -tempfile = "3.6.0" +tempfile = "3.7.0" test_helpers = { path = "../test_helpers" } [features] diff --git a/influxdb_iox/Cargo.toml b/influxdb_iox/Cargo.toml index 1fe026438b..36f19e52cb 100644 --- a/influxdb_iox/Cargo.toml +++ b/influxdb_iox/Cargo.toml @@ -69,7 +69,7 @@ once_cell = { version = "1.18", features = ["parking_lot"] } rustyline = { version = "12.0", default-features = false, features = ["with-file-history"]} serde_json = "1.0.103" snafu = "0.7" -tempfile = "3.6.0" +tempfile = "3.7.0" thiserror = "1.0.43" tikv-jemalloc-ctl = { version = "0.5.0", optional = true } tokio = { version = "1.29", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time", "io-std"] } diff --git a/ingester/Cargo.toml b/ingester/Cargo.toml index ded51ef67f..c275e36709 100644 --- a/ingester/Cargo.toml +++ b/ingester/Cargo.toml @@ -60,7 +60,7 @@ lazy_static = "1.4.0" mutable_batch_lp = { path = "../mutable_batch_lp" } object_store = { workspace = true } paste = "1.0.14" -tempfile = "3.6.0" +tempfile = "3.7.0" test_helpers = { path = "../test_helpers", features = ["future_timeout"] } tokio = { version = "1.29", features = ["macros", "time", "test-util"] } diff --git a/ingester_test_ctx/Cargo.toml b/ingester_test_ctx/Cargo.toml index c75fcd8d30..918c05acdd 100644 --- a/ingester_test_ctx/Cargo.toml +++ b/ingester_test_ctx/Cargo.toml @@ -27,7 +27,7 @@ object_store = { workspace = true } observability_deps = { version = "0.1.0", path = "../observability_deps" } parquet_file = { version = "0.1.0", path = "../parquet_file" } prost = { version = "0.11.9", default-features = false, features = ["std"] } -tempfile = { version = "3.6.0" } +tempfile = { version = "3.7.0" } test_helpers = { path = "../test_helpers", features = ["future_timeout"] } tokio = { version = "1.29", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } tokio-util = "0.7.8" diff --git a/test_helpers/Cargo.toml b/test_helpers/Cargo.toml index 00beda833f..fbf7cf1275 100644 --- a/test_helpers/Cargo.toml +++ b/test_helpers/Cargo.toml @@ -8,7 +8,7 @@ license.workspace = true [dependencies] # In alphabetical order dotenvy = "0.15.7" parking_lot = "0.12" -tempfile = "3.6.0" +tempfile = "3.7.0" tracing-log = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } observability_deps = { path = "../observability_deps" } diff --git a/test_helpers_end_to_end/Cargo.toml b/test_helpers_end_to_end/Cargo.toml index 458847abc6..b75a246444 100644 --- a/test_helpers_end_to_end/Cargo.toml +++ b/test_helpers_end_to_end/Cargo.toml @@ -32,7 +32,7 @@ regex = "1.9" reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] } snafu = "0.7" sqlx = { version = "0.7.1", features = [ "runtime-tokio-rustls" , "postgres", "uuid" ] } -tempfile = "3.6.0" +tempfile = "3.7.0" test_helpers = { path = "../test_helpers", features = ["future_timeout"] } tokio = { version = "1.29", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tokio-util = "0.7" diff --git a/tracker/Cargo.toml b/tracker/Cargo.toml index 5d54cd4a7f..ce9265489c 100644 --- a/tracker/Cargo.toml +++ b/tracker/Cargo.toml @@ -22,6 +22,6 @@ workspace-hack = { version = "0.1", path = "../workspace-hack" } sysinfo = "0.29.5" [dev-dependencies] -tempfile = "3.6.0" +tempfile = "3.7.0" # Need the multi-threaded executor for testing tokio = { version = "1.29", features = ["macros", "parking_lot", "rt-multi-thread", "time"] } diff --git a/workspace-hack/Cargo.toml b/workspace-hack/Cargo.toml index 56b3ec869a..0357ff1df4 100644 --- a/workspace-hack/Cargo.toml +++ b/workspace-hack/Cargo.toml @@ -172,6 +172,7 @@ rustls = { version = "0.21" } [target.x86_64-unknown-linux-gnu.build-dependencies] bitflags = { version = "2", default-features = false, features = ["std"] } once_cell = { version = "1", default-features = false, features = ["unstable"] } +rustix = { version = "0.38", features = ["fs", "termios"] } rustls = { version = "0.21" } [target.x86_64-apple-darwin.dependencies] @@ -184,6 +185,7 @@ rustls = { version = "0.21" } [target.x86_64-apple-darwin.build-dependencies] bitflags = { version = "2", default-features = false, features = ["std"] } once_cell = { version = "1", default-features = false, features = ["unstable"] } +rustix = { version = "0.38", features = ["fs", "termios"] } rustls = { version = "0.21" } [target.aarch64-apple-darwin.dependencies] @@ -196,6 +198,7 @@ rustls = { version = "0.21" } [target.aarch64-apple-darwin.build-dependencies] bitflags = { version = "2", default-features = false, features = ["std"] } once_cell = { version = "1", default-features = false, features = ["unstable"] } +rustix = { version = "0.38", features = ["fs", "termios"] } rustls = { version = "0.21" } [target.x86_64-pc-windows-msvc.dependencies]