Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 22 additions & 60 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cargo-kiln/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ num_cpus = "1.0"
[dev-dependencies]
# Testing utilities
tempfile = "3.27"
criterion = "0.5"
criterion = "0.6"

[lints]
workspace = true
2 changes: 1 addition & 1 deletion kiln-component/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ kiln-sync = { workspace = true, default-features = false }
log = { version = "0.4", optional = true }

[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
criterion = { version = "0.6", features = ["html_reports"] }

[features]
# By default, enable std to match kiln-runtime's default behavior
Expand Down
2 changes: 1 addition & 1 deletion kiln-decoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
criterion = "0.6"
tempfile = "3.27"
proptest = "1.4"
proptest = "1.11"
hex = "0.4"
wat = "1.232.0"

Expand Down
2 changes: 1 addition & 1 deletion kiln-format/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ kiln-foundation = { workspace = true, default-features = false }

[dev-dependencies]
# For property testing
proptest = "1.0.0"
proptest = "1.11.0"

# For formal verification (moved to dependencies with optional flag)
[dependencies.kani-verifier]
Expand Down
2 changes: 1 addition & 1 deletion kiln-foundation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ kani-verifier = { version = "0.62.0", optional = true }
# serde_bytes = { version = "0.11", optional = true }

[dev-dependencies]
proptest = { version = "1.4.0", default-features = false, features = ["std"] }
proptest = { version = "1.11.0", default-features = false, features = ["std"] }
proptest-derive = "0.5.1"
criterion = { version = "0.6", features = ["html_reports"] }
serial_test = "3.2"
Expand Down
2 changes: 1 addition & 1 deletion kiln-instructions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ log = { version = "0.4", optional = true }
# No-std support

[dev-dependencies]
proptest = "1.4.0"
proptest = "1.11.0"

[lints]
workspace = true
Loading