Skip to content

Commit

Permalink
chore(deps): upgrade and fix dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
raulk committed Aug 8, 2024
1 parent ca9207e commit 87be8f4
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 28 deletions.
29 changes: 15 additions & 14 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ license-file = "LICENSE-APACHE"
## dummy trigger ci

[workspace.dependencies]
time = "0.3.33"
anyhow = "1"
arbitrary = { version = "1", features = ["derive"] }
arbtest = "0.2"
Expand Down
12 changes: 7 additions & 5 deletions fendermint/rocksdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ license.workspace = true
num_cpus = "1.14"
rocksdb = { version = "0.21", features = ["multi-threaded-cf"] }
anyhow = { workspace = true }
fendermint_storage = { path = "../storage", optional = true, features = ["testing"] }
fendermint_storage = { path = "../storage", optional = true, features = [
"testing",
] }
serde = { workspace = true }
thiserror = { workspace = true }

Expand All @@ -30,7 +32,7 @@ blockstore = ["fvm_ipld_blockstore", "cid"]
kvstore = ["fendermint_storage"]

lz4 = ["rocksdb/lz4"]
# snappy = ["rocksdb/snappy"]
# zlib = ["rocksdb/zlib"]
# bzip2 = ["rocksdb/bzip2"]
# zstd = ["rocksdb/zstd"]
snappy = ["rocksdb/snappy"]
zlib = ["rocksdb/zlib"]
bzip2 = ["rocksdb/bzip2"]
zstd = ["rocksdb/zstd"]
3 changes: 3 additions & 0 deletions fendermint/vm/actor_interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,6 @@ quickcheck_macros = { workspace = true }
rand = { workspace = true }

fendermint_vm_genesis = { path = "../genesis", features = ["arb"] }

[features]
m2-native = []
21 changes: 12 additions & 9 deletions ipc/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,17 @@ fvm_ipld_hamt = { workspace = true }
fvm_shared = { workspace = true }

anyhow = { workspace = true }
cid = { workspace = true, default-features = false, features = ["serde-codec"]}
cid = { workspace = true, default-features = false, features = ["serde-codec"] }
hex = { workspace = true }
indexmap = {version = "1.8.0", features = ["serde-1"]}
integer-encoding = { workspace = true, default-features = false}
lazy_static = { workspace = true }
log = { workspace = true }
num-derive = { workspace = true }
num-traits = { workspace = true }
serde = { workspace = true, features = ["derive"]}
uint = {version = "0.9.3", default-features = false}
indexmap = { version = "1.8.0", features = ["serde-1"] }
integer-encoding = { workspace = true, default-features = false }
lazy_static = { workspace = true }
log = { workspace = true }
num-derive = { workspace = true }
num-traits = { workspace = true }
serde = { workspace = true, features = ["derive"] }
uint = { version = "0.9.3", default-features = false }
thiserror = { workspace = true }

[features]
fil-actor = []

0 comments on commit 87be8f4

Please sign in to comment.