diff --git a/native/Cargo.lock b/native/Cargo.lock index bf9a7ea2da..3975edd326 100644 --- a/native/Cargo.lock +++ b/native/Cargo.lock @@ -474,7 +474,7 @@ dependencies = [ "futures-lite", "parking", "polling", - "rustix 1.1.2", + "rustix 1.1.3", "slab", "windows-sys 0.61.2", ] @@ -4421,7 +4421,7 @@ dependencies = [ "concurrent-queue", "hermit-abi", "pin-project-lite", - "rustix 1.1.2", + "rustix 1.1.3", "windows-sys 0.61.2", ] @@ -4524,7 +4524,7 @@ dependencies = [ "chrono", "flate2", "procfs-core", - "rustix 1.1.2", + "rustix 1.1.3", ] [[package]] @@ -5110,9 +5110,9 @@ dependencies = [ [[package]] name = "rustix" -version = "1.1.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" +checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" dependencies = [ "bitflags 2.10.0", "errno", @@ -5647,14 +5647,14 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tempfile" -version = "3.23.0" +version = "3.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" +checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c" dependencies = [ "fastrand", "getrandom 0.3.4", "once_cell", - "rustix 1.1.2", + "rustix 1.1.3", "windows-sys 0.61.2", ] diff --git a/native/core/Cargo.toml b/native/core/Cargo.toml index c79d603095..0663a118d8 100644 --- a/native/core/Cargo.toml +++ b/native/core/Cargo.toml @@ -56,7 +56,7 @@ zstd = "0.13.3" rand = { workspace = true } num = { workspace = true } bytes = { workspace = true } -tempfile = "3.8.0" +tempfile = "3.24.0" itertools = "0.14.0" paste = "1.0.14" datafusion = { workspace = true, features = ["parquet_encryption", "sql"] } diff --git a/native/fs-hdfs/Cargo.toml b/native/fs-hdfs/Cargo.toml index 98005c860f..012f8014a8 100644 --- a/native/fs-hdfs/Cargo.toml +++ b/native/fs-hdfs/Cargo.toml @@ -53,4 +53,4 @@ log = "^0.4" [dev-dependencies] uuid = {version = "^1.18", features = ["v4"]} -tempfile = "^3.2" +tempfile = "^3.24"