build: Upgraded tempfile version to possibly fix bug on mac roundtrip tests
This commit is contained in:
Generated
+3
-3
@@ -1795,15 +1795,15 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tempfile"
|
name = "tempfile"
|
||||||
version = "3.21.0"
|
version = "3.22.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "15b61f8f20e3a6f7e0649d825294eaf317edce30f82cf6026e7e4cb9222a7d1e"
|
checksum = "84fa4d11fadde498443cca10fd3ac23c951f0dc59e080e9f4b93d4df4e4eea53"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"fastrand",
|
"fastrand",
|
||||||
"getrandom 0.3.3",
|
"getrandom 0.3.3",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"rustix",
|
"rustix",
|
||||||
"windows-sys 0.60.2",
|
"windows-sys 0.61.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|||||||
+10
-3
@@ -19,9 +19,16 @@ argon2 = "0.5.3"
|
|||||||
backtrace = "0.3.75"
|
backtrace = "0.3.75"
|
||||||
base64 = "0.22.1"
|
base64 = "0.22.1"
|
||||||
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
|
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
|
||||||
clap = { version = "4.5.47", features = ["cargo", "derive", "env", "wrap_help"] }
|
clap = { version = "4.5.47", features = [
|
||||||
|
"cargo",
|
||||||
|
"derive",
|
||||||
|
"env",
|
||||||
|
"wrap_help",
|
||||||
|
] }
|
||||||
clap_complete = "4.5.57"
|
clap_complete = "4.5.57"
|
||||||
confy = { version = "1.0.0", default-features = false, features = ["yaml_conf"] }
|
confy = { version = "1.0.0", default-features = false, features = [
|
||||||
|
"yaml_conf",
|
||||||
|
] }
|
||||||
crossterm = "0.29.0"
|
crossterm = "0.29.0"
|
||||||
dirs = "6.0.0"
|
dirs = "6.0.0"
|
||||||
human-panic = "2.0.3"
|
human-panic = "2.0.3"
|
||||||
@@ -41,10 +48,10 @@ chrono = "0.4.42"
|
|||||||
indoc = "2.0.6"
|
indoc = "2.0.6"
|
||||||
regex = "1.11.2"
|
regex = "1.11.2"
|
||||||
serde_yaml = "0.9.34"
|
serde_yaml = "0.9.34"
|
||||||
|
tempfile = "3.22.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
pretty_assertions = "1.4.1"
|
pretty_assertions = "1.4.1"
|
||||||
tempfile = "3.10.1"
|
|
||||||
proptest = "1.5.0"
|
proptest = "1.5.0"
|
||||||
assert_cmd = "2.0.16"
|
assert_cmd = "2.0.16"
|
||||||
predicates = "3.1.2"
|
predicates = "3.1.2"
|
||||||
|
|||||||
Reference in New Issue
Block a user