Skip to content

Commit

Permalink
Update toolchain to 2024-09-20
Browse files Browse the repository at this point in the history
Changes required due to:
- rust-lang/rust@bdacdfe95f Minimize visibilities.

Resolves: model-checking#3534
  • Loading branch information
tautschnig committed Sep 23, 2024
1 parent bb241de commit cf75434
Show file tree
Hide file tree
Showing 4 changed files with 333 additions and 8 deletions.
32 changes: 32 additions & 0 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,15 @@ dependencies = [
"tracing",
]

[[package]]
name = "crc32fast"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
dependencies = [
"cfg-if",
]

[[package]]
name = "crossbeam-deque"
version = "0.8.5"
Expand Down Expand Up @@ -476,6 +485,7 @@ dependencies = [
"kani_metadata",
"lazy_static",
"num",
"object",
"quote",
"regex",
"serde",
Expand Down Expand Up @@ -718,6 +728,19 @@ dependencies = [
"autocfg",
]

[[package]]
name = "object"
version = "0.36.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "084f1a5821ac4c651660a94a7153d27ac9d8a53736203f58b31945ded098070a"
dependencies = [
"crc32fast",
"hashbrown",
"indexmap",
"memchr",
"wasmparser",
]

[[package]]
name = "once_cell"
version = "1.19.0"
Expand Down Expand Up @@ -1404,6 +1427,15 @@ version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"

[[package]]
name = "wasmparser"
version = "0.216.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcdee6bea3619d311fb4b299721e89a986c3470f804b6d534340e412589028e3"
dependencies = [
"bitflags",
]

[[package]]
name = "which"
version = "6.0.3"
Expand Down
5 changes: 5 additions & 0 deletions kani-compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ tracing = {version = "0.1", features = ["max_level_trace", "release_max_level_de
tracing-subscriber = {version = "0.3.8", features = ["env-filter", "json", "fmt"]}
tracing-tree = "0.4.0"

[dependencies.object]
version = "0.36.2"
default-features = false
features = ["elf", "macho", "pe", "xcoff", "write", "wasm"]

# Future proofing: enable backend dependencies using feature.
[features]
default = ['cprover']
Expand Down
Loading

0 comments on commit cf75434

Please sign in to comment.