diff --git a/Cargo.lock b/Cargo.lock index e6fab490f..5a8014523 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1319,7 +1319,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" dependencies = [ "cfg-if", - "windows-targets 0.52.0", + "windows-targets 0.48.5", ] [[package]] @@ -2773,6 +2773,12 @@ version = "0.4.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" +[[package]] +name = "linux-raw-sys" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6db9c683daf087dc577b7506e9695b3d556a9f3849903fa28186283afd6809e9" + [[package]] name = "litemap" version = "0.7.5" @@ -3230,7 +3236,7 @@ dependencies = [ "bitflags 2.4.2", "hex", "procfs-core", - "rustix", + "rustix 0.38.44", ] [[package]] @@ -3523,7 +3529,20 @@ dependencies = [ "bitflags 2.4.2", "errno", "libc", - "linux-raw-sys", + "linux-raw-sys 0.4.15", + "windows-sys 0.52.0", +] + +[[package]] +name = "rustix" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7178faa4b75a30e269c71e61c353ce2748cf3d76f0c44c393f4e60abf49b825" +dependencies = [ + "bitflags 2.4.2", + "errno", + "libc", + "linux-raw-sys 0.9.2", "windows-sys 0.52.0", ] @@ -3781,15 +3800,14 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.17.1" +version = "3.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22e5a0acb1f3f55f65cc4a866c361b2fb2a0ff6366785ae6fbb5f85df07ba230" +checksum = "488960f40a3fd53d72c2a29a58722561dee8afdd175bd88e3db4677d7b2ba600" dependencies = [ - "cfg-if", "fastrand", "getrandom 0.3.1", "once_cell", - "rustix", + "rustix 1.0.2", "windows-sys 0.52.0", ] diff --git a/deny.toml b/deny.toml index fa84802a0..823514a60 100644 --- a/deny.toml +++ b/deny.toml @@ -55,7 +55,6 @@ skip = [ # `linkerd-trace-context`, `rustls-pemfile` and `tonic` depend on `base64` # v0.13.1 while `rcgen` depends on v0.21.5 { name = "base64" }, - { name = "bitflags", version = "1" }, # https://github.com/hawkw/matchers/pull/4 { name = "regex-automata", version = "0.1" }, { name = "regex-syntax", version = "0.6" }, @@ -67,8 +66,10 @@ skip = [ skip-tree = [ # thiserror v2 is still propagating through the ecosystem { name = "thiserror", version = "1" }, - # rand 0.9 is still propagating through the ecosystem + # rand v0.9 is still propagating through the ecosystem { name = "rand", version = "0.8" }, + # rust v1.0 is still propagating through the ecosystem + { name = "rustix", version = "0.38" }, ] [sources]