Skip to content
Merged
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
2 changes: 1 addition & 1 deletion fvm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pretty_assertions = "1.2.1"
fvm = { path = ".", features = ["testing"], default-features = false }

[dependencies.wasmtime]
version = "0.40.1"
version = "1.0.1"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

woot!

default-features = false
features = ["cranelift", "pooling-allocator", "parallel-compilation"]

Expand Down
2 changes: 2 additions & 0 deletions fvm/src/machine/engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ pub fn default_wasmtime_config() -> wasmtime::Config {
c.debug_info(false);
c.generate_address_map(false);
c.cranelift_debug_verifier(false);
c.native_unwind_info(false);
#[allow(deprecated)] // TODO https://github.com/bytecodealliance/wasmtime/issues/5037
c.wasm_backtrace(false);
c.wasm_reference_types(false);

Expand Down
4 changes: 2 additions & 2 deletions ipld/amt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cid = { version = "0.8.5", default-features = false, features = ["serde-codec"]
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
once_cell = "1.5"
ahash = { version = "0.7", optional = true }
ahash = { version = "0.8", optional = true }
itertools = "0.10"
anyhow = "1.0.51"
fvm_ipld_blockstore = { version = "0.1", path = "../blockstore" }
Expand All @@ -22,7 +22,7 @@ fvm_ipld_encoding = { version = "0.2", path = "../encoding" }
go-interop = ["ahash"]

[dev-dependencies]
criterion = "0.3.1"
criterion = "0.4.0"

[[bench]]
name = "amt_benchmark"
Expand Down
2 changes: 1 addition & 1 deletion ipld/bitfield/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ fvm_ipld_encoding = { version = "0.2", path = "../encoding" }
[dev-dependencies]
rand_xorshift = "0.3.0"
rand = "0.8.5"
criterion = "0.3"
criterion = "0.4"
serde_json = "1.0"
gperftools = "0.2.0"

Expand Down
4 changes: 2 additions & 2 deletions ipld/hamt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ sha2 = "0.10"
once_cell = "1.5"
forest_hash_utils = "0.1"
anyhow = "1.0.51"
libipld-core = { version = "0.13.1", features = ["serde-codec"] }
libipld-core = { version = "0.14.0", features = ["serde-codec"] }
fvm_ipld_encoding = { version = "0.2", path = "../encoding" }
fvm_ipld_blockstore = { version = "0.1", path = "../blockstore" }

Expand All @@ -29,7 +29,7 @@ ignore-dead-links = []

[dev-dependencies]
hex = "0.4.2"
criterion = "0.3.3"
criterion = "0.4.0"
unsigned-varint = "0.7"

[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ arbitrary = { version = "1.1", optional = true, features = ["derive"]}
## non-wasm dependencies; these dependencies and the respective code is
## only activated through non-default features, which the Kernel enables, but
## not the actors.
filecoin-proofs-api = { version = "12", default_features = false, optional = true }
filecoin-proofs-api = { version = "12", default-features = false, optional = true }
libsecp256k1 = { version = "0.7", optional = true }
bls-signatures = { version = "0.12", default-features = false, optional = true }
byteorder = "1.4.3"
Expand Down
8 changes: 4 additions & 4 deletions testing/conformance/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ anyhow = "1.0.47"
thiserror = "1.0.30"
num-traits = "0.2"
derive_builder = "0.11.2"
ahash = "0.7"
ahash = "0.8"
num-derive = "0.3.3"
cid = { version = "0.8.5", default-features = false }
multihash = { version = "0.16.1", default-features = false }
Expand All @@ -35,7 +35,7 @@ log = "0.4.14"
byteorder = "1.4.3"
futures = "0.3.19"
async-std = { version = "1.9", features = ["attributes"] }
wasmtime = { version = "0.40.1", default-features = false }
wasmtime = { version = "1.0.1", default-features = false }
base64 = "0.13.0"
flate2 = { version = "1.0" }
colored = "2"
Expand All @@ -47,7 +47,7 @@ walkdir = "2.3"
regex = { version = "1.0" }
ittapi-rs = { version = "0.3.0", optional = true }
actors-v7 = { version = "~7.5", package = "fil_builtin_actors_bundle" }
libipld-core = { version = "0.13.1", features = ["serde-codec"] }
libipld-core = { version = "0.14.0", features = ["serde-codec"] }

[dependencies.fvm]
version = "3.0.0-alpha.1"
Expand All @@ -61,7 +61,7 @@ m2-native = []

[dev-dependencies]
pretty_env_logger = "0.4.0"
criterion = { version = "0.3", features = ["async_std"] }
criterion = { version = "0.4", features = ["async_std"] }

[[bin]]
name = "perf-conformance"
Expand Down
2 changes: 1 addition & 1 deletion testing/integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ serde_repr = "0.1"
thiserror = "1.0.30"

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

Expand Down