Skip to content

Commit 2ab03e2

Browse files
build(deps): bump tempfile from 3.17.1 to 3.19.0 (#3759)
* build(deps): bump tempfile from 3.17.1 to 3.19.0 Bumps [tempfile](https://github.com/Stebalien/tempfile) from 3.17.1 to 3.19.0. - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](Stebalien/tempfile@v3.17.1...v3.19.0) --- updated-dependencies: - dependency-name: tempfile dependency-type: indirect update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * chore(deny.toml): skip rustix v0.38 this commit adds mention of rustix, whose 1.0 release is still propagating through the ecosystem, to the deny.toml. nb: this also removes the bitflags directive, which no longer included a duplicate version. Signed-off-by: katelyn martin <kate@buoyant.io> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: katelyn martin <kate@buoyant.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: katelyn martin <kate@buoyant.io>
1 parent 56faf96 commit 2ab03e2

File tree

2 files changed

+28
-9
lines changed

2 files changed

+28
-9
lines changed

Cargo.lock

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1319,7 +1319,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
13191319
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
13201320
dependencies = [
13211321
"cfg-if",
1322-
"windows-targets 0.52.0",
1322+
"windows-targets 0.48.5",
13231323
]
13241324

13251325
[[package]]
@@ -2773,6 +2773,12 @@ version = "0.4.15"
27732773
source = "registry+https://github.com/rust-lang/crates.io-index"
27742774
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
27752775

2776+
[[package]]
2777+
name = "linux-raw-sys"
2778+
version = "0.9.2"
2779+
source = "registry+https://github.com/rust-lang/crates.io-index"
2780+
checksum = "6db9c683daf087dc577b7506e9695b3d556a9f3849903fa28186283afd6809e9"
2781+
27762782
[[package]]
27772783
name = "litemap"
27782784
version = "0.7.5"
@@ -3230,7 +3236,7 @@ dependencies = [
32303236
"bitflags 2.4.2",
32313237
"hex",
32323238
"procfs-core",
3233-
"rustix",
3239+
"rustix 0.38.44",
32343240
]
32353241

32363242
[[package]]
@@ -3523,7 +3529,20 @@ dependencies = [
35233529
"bitflags 2.4.2",
35243530
"errno",
35253531
"libc",
3526-
"linux-raw-sys",
3532+
"linux-raw-sys 0.4.15",
3533+
"windows-sys 0.52.0",
3534+
]
3535+
3536+
[[package]]
3537+
name = "rustix"
3538+
version = "1.0.2"
3539+
source = "registry+https://github.com/rust-lang/crates.io-index"
3540+
checksum = "f7178faa4b75a30e269c71e61c353ce2748cf3d76f0c44c393f4e60abf49b825"
3541+
dependencies = [
3542+
"bitflags 2.4.2",
3543+
"errno",
3544+
"libc",
3545+
"linux-raw-sys 0.9.2",
35273546
"windows-sys 0.52.0",
35283547
]
35293548

@@ -3781,15 +3800,14 @@ dependencies = [
37813800

37823801
[[package]]
37833802
name = "tempfile"
3784-
version = "3.17.1"
3803+
version = "3.19.0"
37853804
source = "registry+https://github.com/rust-lang/crates.io-index"
3786-
checksum = "22e5a0acb1f3f55f65cc4a866c361b2fb2a0ff6366785ae6fbb5f85df07ba230"
3805+
checksum = "488960f40a3fd53d72c2a29a58722561dee8afdd175bd88e3db4677d7b2ba600"
37873806
dependencies = [
3788-
"cfg-if",
37893807
"fastrand",
37903808
"getrandom 0.3.1",
37913809
"once_cell",
3792-
"rustix",
3810+
"rustix 1.0.2",
37933811
"windows-sys 0.52.0",
37943812
]
37953813

deny.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ skip = [
5555
# `linkerd-trace-context`, `rustls-pemfile` and `tonic` depend on `base64`
5656
# v0.13.1 while `rcgen` depends on v0.21.5
5757
{ name = "base64" },
58-
{ name = "bitflags", version = "1" },
5958
# https://github.com/hawkw/matchers/pull/4
6059
{ name = "regex-automata", version = "0.1" },
6160
{ name = "regex-syntax", version = "0.6" },
@@ -67,8 +66,10 @@ skip = [
6766
skip-tree = [
6867
# thiserror v2 is still propagating through the ecosystem
6968
{ name = "thiserror", version = "1" },
70-
# rand 0.9 is still propagating through the ecosystem
69+
# rand v0.9 is still propagating through the ecosystem
7170
{ name = "rand", version = "0.8" },
71+
# rust v1.0 is still propagating through the ecosystem
72+
{ name = "rustix", version = "0.38" },
7273
]
7374

7475
[sources]

0 commit comments

Comments
 (0)