Merge pull request #646 from vbrandl/dependabot/cargo/tempfile-3.7.0

Bump tempfile from 3.6.0 to 3.7.0
This commit is contained in:
Valentin Brandl 2023-07-21 13:05:45 +02:00 committed by GitHub
commit f86c59fe41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 28 additions and 28 deletions

View File

@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Bump `vergen` from 8.1.3 to 8.2.4 (#621, #622, #635, #638) - Bump `vergen` from 8.1.3 to 8.2.4 (#621, #622, #635, #638)
- Bump `tracing-actix-web` from 0.7.4 to 0.7.5 (#623) - Bump `tracing-actix-web` from 0.7.4 to 0.7.5 (#623)
- Bump `git2` from 0.17.1 to 0.17.2 (#624) - Bump `git2` from 0.17.1 to 0.17.2 (#624)
- Bump `tempfile` from 3.5.0 to 3.6.0 (#626) - Bump `tempfile` from 3.5.0 to 3.7.0 (#626, [#646](https://github.com/vbrandl/hoc/pull/646))
- Bump `serde_json` from 1.0.96 to 1.0.103 (#630, #632, #637, #641, #644) - Bump `serde_json` from 1.0.96 to 1.0.103 (#630, #632, #637, #641, #644)
- Bump `openssl` from 0.10.50 to 0.10.55 (#631) - Bump `openssl` from 0.10.50 to 0.10.55 (#631)
- Bump `tracing-bunyan-formatter` from 0.3.7 to 0.3.8 (#642) - Bump `tracing-bunyan-formatter` from 0.3.7 to 0.3.8 (#642)

52
Cargo.lock generated
View File

@ -648,15 +648,6 @@ dependencies = [
"libc", "libc",
] ]
[[package]]
name = "fastrand"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
dependencies = [
"instant",
]
[[package]] [[package]]
name = "fastrand" name = "fastrand"
version = "2.0.0" version = "2.0.0"
@ -1282,7 +1273,7 @@ dependencies = [
"gix-command", "gix-command",
"gix-config-value", "gix-config-value",
"parking_lot", "parking_lot",
"rustix", "rustix 0.37.22",
"thiserror", "thiserror",
] ]
@ -1431,7 +1422,7 @@ version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7058c94f4164fcf5b8457d35f6d8f6e1007f9f7f938c9c7684a7e01d23c6ddde" checksum = "7058c94f4164fcf5b8457d35f6d8f6e1007f9f7f938c9c7684a7e01d23c6ddde"
dependencies = [ dependencies = [
"fastrand 2.0.0", "fastrand",
] ]
[[package]] [[package]]
@ -1655,15 +1646,6 @@ dependencies = [
"hashbrown 0.12.3", "hashbrown 0.12.3",
] ]
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
]
[[package]] [[package]]
name = "io-close" name = "io-close"
version = "0.3.7" version = "0.3.7"
@ -1814,6 +1796,12 @@ version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
[[package]]
name = "linux-raw-sys"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0"
[[package]] [[package]]
name = "local-channel" name = "local-channel"
version = "0.1.3" version = "0.1.3"
@ -2397,7 +2385,20 @@ dependencies = [
"errno", "errno",
"io-lifetimes", "io-lifetimes",
"libc", "libc",
"linux-raw-sys", "linux-raw-sys 0.3.8",
"windows-sys",
]
[[package]]
name = "rustix"
version = "0.38.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a962918ea88d644592894bc6dc55acc6c0956488adcebbfb6e273506b7fd6e5"
dependencies = [
"bitflags 2.3.3",
"errno",
"libc",
"linux-raw-sys 0.4.3",
"windows-sys", "windows-sys",
] ]
@ -2620,15 +2621,14 @@ dependencies = [
[[package]] [[package]]
name = "tempfile" name = "tempfile"
version = "3.6.0" version = "3.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6" checksum = "5486094ee78b2e5038a6382ed7645bc084dc2ec433426ca4c3cb61e2007b8998"
dependencies = [ dependencies = [
"autocfg",
"cfg-if", "cfg-if",
"fastrand 1.9.0", "fastrand",
"redox_syscall 0.3.5", "redox_syscall 0.3.5",
"rustix", "rustix 0.38.4",
"windows-sys", "windows-sys",
] ]

View File

@ -44,5 +44,5 @@ vergen = { version = "8.2.4", default-features = false, features = ["git", "gito
[dev-dependencies] [dev-dependencies]
awc = "3.1.1" awc = "3.1.1"
ructe = "0.16.1" ructe = "0.16.1"
tempfile = "3.6.0" tempfile = "3.7.0"
tokio = "1.29.1" tokio = "1.29.1"