Skip to content

Commit 72ceaa3

Browse files
authored
Major-version update cargo dependencies (#4158)
Updates as suggested by `cargo outdated --workspace`. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.
1 parent 8d18568 commit 72ceaa3

File tree

5 files changed

+20
-9
lines changed

5 files changed

+20
-9
lines changed

Cargo.lock

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ dependencies = [
202202
"anyhow",
203203
"cargo_metadata",
204204
"clap",
205-
"which",
205+
"which 8.0.0",
206206
]
207207

208208
[[package]]
@@ -321,7 +321,7 @@ dependencies = [
321321
"tracing",
322322
"tracing-subscriber",
323323
"tracing-tree 0.4.0 (git+https://github.com/Nadrieril/tracing-tree)",
324-
"which",
324+
"which 7.0.3",
325325
]
326326

327327
[[package]]
@@ -771,9 +771,9 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
771771

772772
[[package]]
773773
name = "graph-cycles"
774-
version = "0.2.0"
774+
version = "0.3.0"
775775
source = "registry+https://github.com/rust-lang/crates.io-index"
776-
checksum = "3092eb8c0a52f9146161afd672f10fbb970daec4fa79d17b26f79f10139cba9e"
776+
checksum = "27b92c49194cd4f20bad0d9875503c951993f4249c0cfd210a49ed39ef072a0c"
777777
dependencies = [
778778
"ahash",
779779
"petgraph 0.7.1",
@@ -1132,7 +1132,7 @@ dependencies = [
11321132
"toml",
11331133
"tracing",
11341134
"tracing-subscriber",
1135-
"which",
1135+
"which 8.0.0",
11361136
]
11371137

11381138
[[package]]
@@ -2527,6 +2527,17 @@ dependencies = [
25272527
"winsafe",
25282528
]
25292529

2530+
[[package]]
2531+
name = "which"
2532+
version = "8.0.0"
2533+
source = "registry+https://github.com/rust-lang/crates.io-index"
2534+
checksum = "d3fabb953106c3c8eea8306e4393700d7657561cb43122571b172bbfb7c7ba1d"
2535+
dependencies = [
2536+
"env_home",
2537+
"rustix 1.0.7",
2538+
"winsafe",
2539+
]
2540+
25302541
[[package]]
25312542
name = "winapi"
25322543
version = "0.3.9"

cprover_bindings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ test = true
1313
doctest = false
1414

1515
[dependencies]
16-
lazy_static = "1.4.0"
16+
lazy_static = "1.5.0"
1717
num = "0.4.0"
1818
num-traits = "0.2"
1919
serde = {version = "1", features = ["derive"]}

kani-driver/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ strum_macros = {version = "0.27.1"}
3232
tempfile = "3"
3333
tracing = {version = "0.1", features = ["max_level_trace", "release_max_level_debug"]}
3434
tracing-subscriber = {version = "0.3.8", features = ["env-filter", "json", "fmt"]}
35-
which = "7"
35+
which = "8"
3636
time = {version = "0.3.36", features = ["formatting"]}
3737
tokio = { version = "1.40.0", features = ["io-util", "process", "rt", "time"] }
3838
chrono = { version = "0.4.41", default-features = false, features = [ "clock" ]}

tools/build-kani/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ publish = false
1313
anyhow = "1"
1414
cargo_metadata = "0.20"
1515
clap = { version = "4.4.11", features=["derive"] }
16-
which = "7"
16+
which = "8"

tools/scanner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ serde = {version = "1", features = ["derive"]}
1616
strum = "0.27.1"
1717
strum_macros = "0.27.1"
1818
petgraph = "0.7.1"
19-
graph-cycles = "0.2.0"
19+
graph-cycles = "0.3.0"
2020

2121
[package.metadata.rust-analyzer]
2222
# This crate uses rustc crates.

0 commit comments

Comments
 (0)