Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
Preparing for the nv21 code freeze. Notably, this updates wasmtime to
v12.
  • Loading branch information
Stebalien committed Sep 1, 2023
1 parent c56f541 commit 6b21389
Show file tree
Hide file tree
Showing 10 changed files with 500 additions and 593 deletions.
1,071 changes: 489 additions & 582 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions fvm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ pretty_assertions = "1.3.0"
fvm = { path = ".", features = ["testing"], default-features = false }

[dependencies.wasmtime]
version = "10.0.1"
version = "12.0.1"
default-features = false
features = ["cranelift", "pooling-allocator", "parallel-compilation"]

[dependencies.wasmtime-environ]
version = "10.0.1"
version = "12.0.1"

[dependencies.wasmtime-runtime]
version = "10.0.1"
version = "12.0.1"
default-features = false

[features]
Expand Down
2 changes: 1 addition & 1 deletion ipld/car/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cid = { workspace = true }
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
futures = "0.3.28"
integer-encoding = { version = "3.0", features = ["futures_async"] }
integer-encoding = { version = "4.0", features = ["futures_async"] }
fvm_ipld_blockstore = { version = "0.2", path = "../blockstore" }
fvm_ipld_encoding = { version = "0.4", path = "../encoding" }

Expand Down
2 changes: 1 addition & 1 deletion ipld/car/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ impl CarHeader {
) -> Result<(), Error>
where
W: AsyncWrite + Send + Unpin,
S: Stream<Item = (Cid, Vec<u8>)> + Unpin,
S: Stream<Item = (Cid, Vec<u8>)> + Unpin + Send,
{
// Write header bytes
let header_bytes = to_vec(self)?;
Expand Down
2 changes: 1 addition & 1 deletion shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/filecoin-project/ref-fvm"
blake2b_simd = "1.0.1"
thiserror = "1.0"
num-traits = "0.2"
num-derive = "0.3"
num-derive = "0.4"
num-bigint = "0.4"
num-integer = "0.1"
data-encoding = "2.4.0"
Expand Down
2 changes: 1 addition & 1 deletion testing/calibration/shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ fvm_shared = { version = "3.5.0", path = "../../../shared", features = ["testing
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
num-traits = "0.2"
num-derive = "0.3"
num-derive = "0.4"
2 changes: 1 addition & 1 deletion testing/conformance/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ lazy_static = "1.4.0"
log = "0.4.19"
futures = "0.3.28"
async-std = { version = "1.12", features = ["attributes"] }
wasmtime = { version = "10.0.1", default-features = false }
wasmtime = { version = "12.0.1", default-features = false }
base64 = "0.21.2"
flate2 = { version = "1.0" }
colored = "2"
Expand Down
2 changes: 1 addition & 1 deletion testing/integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ serde_tuple = "0.5"
thiserror = "1.0.40"

[dependencies.wasmtime]
version = "10.0.1"
version = "12.0.1"
default-features = false
features = ["cranelift", "parallel-compilation"]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fvm_ipld_encoding = { version = "0.4.0", path = "../../../../ipld/encoding" }
fvm_gas_calibration_shared = { path = "../../../calibration/shared" }

cid = { workspace = true }
num-derive = "0.3"
num-derive = "0.4"
num-traits = "0.2"
serde = { version = "1.0", features = ["derive"] }
anyhow = "1.0.71"
Expand Down
2 changes: 1 addition & 1 deletion tools/fvm-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fvm_integration_tests = { path = "../../testing/integration" }
fvm_ipld_encoding = { path = "../../ipld/encoding" }
fvm_shared = { path = "../../shared" }
anyhow = "1.0.71"
clap = { version = "4.3.9", features = ["derive"] }
clap = { version = "4.3.9", features = ["derive", "std", "help", "usage", "error-context"], default-features = false }
hex = "0.4.3"
env_logger = "0.10.0"
fvm = { path = "../../fvm", default-features = false }

0 comments on commit 6b21389

Please sign in to comment.