Skip to content

Commit

Permalink
crates: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
q9f committed Mar 28, 2022
1 parent b7951fb commit 619068a
Show file tree
Hide file tree
Showing 40 changed files with 541 additions and 259 deletions.
434 changes: 359 additions & 75 deletions Cargo.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ features = ["json"]
anyhow = "1.0"
fvm_shared = { version = "0.2", default-features = false }
address = { package = "forest_address", version = "0.3" }
encoding = { package = "forest_encoding", version = "0.2.1" }
libsecp256k1 = "0.7.0"
encoding = { package = "forest_encoding", version = "0.2" }
libsecp256k1 = "0.7"
bls-signatures = { version = "0.11", default-features = false }
serde = { version = "1.0", features = ["derive"] }
num-traits = "0.2"
num-derive = "0.3.0"
num-derive = "0.3"
thiserror = "1.0"
base64 = { version = "0.13", optional = true }

[dev-dependencies]
rand = "0.8.4"
rand_chacha = "0.3.1"
rand = "0.8"
rand_chacha = "0.3"

[features]
default = ["blst"]
Expand Down
2 changes: 1 addition & 1 deletion encoding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
repository = "https://github.com/ChainSafe/forest"

[dependencies]
serde_ipld_dagcbor = "0.1.0"
serde_ipld_dagcbor = "0.1"
fvm_shared = { version = "0.2", default-features = false }
blake2b_simd = "1.0"
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion forest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ genesis = { path = "../utils/genesis" }
paramfetch = { path = "../utils/paramfetch" }
encoding = { package = "forest_encoding", version = "0.2" }
networks = { path = "../types/networks" }
rpassword = "5.0"
rpassword = "6.0"
rayon = "1.5"
prometheus = { version = "0.13", features = ["process"] }
ticker = "0.1"
Expand Down
10 changes: 5 additions & 5 deletions ipld/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ features = ["json"]

[dependencies]
fvm_shared = { version = "0.2", default-features = false }
libipld-core = { version = "0.13.1", features = ["serde-codec"] }
encoding = { package = "forest_encoding", version = "0.2.1" }
libipld-core = { version = "0.13", features = ["serde-codec"] }
encoding = { package = "forest_encoding", version = "0.2" }
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
multibase = { version = "0.9.0", optional = true }
multibase = { version = "0.9", optional = true }
async-trait = "0.1"
async-recursion = "0.3.1"
indexmap = { version = "1.7.0", features = ["serde-1"] }
async-recursion = "1.0"
indexmap = { version = "1.8", features = ["serde-1"] }

[dependencies.cid]
package = "forest_cid"
Expand Down
6 changes: 3 additions & 3 deletions ipld/amt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ repository = "https://github.com/ChainSafe/forest"
[dependencies]
cid = { package = "forest_cid", features = ["cbor"], version = "0.3" }
db = { package = "forest_db", version = "0.1" }
encoding = { package = "forest_encoding", version = "0.2.1" }
encoding = { package = "forest_encoding", version = "0.2" }
serde = { version = "1.0", features = ["derive"] }
ipld_blockstore = "0.1"
thiserror = "1.0"
once_cell = "1.5"
ahash = { version = "0.6", optional = true }
ahash = { version = "0.7", optional = true }
itertools = "0.10"

[features]
go-interop = ["ahash"]

[dev-dependencies]
criterion = "0.3.1"
criterion = "0.3"
ipld_blockstore = { version = "0.1", features = ["tracking"] }

[[bench]]
Expand Down
6 changes: 3 additions & 3 deletions ipld/amt/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ edition = "2021"
cargo-fuzz = true

[dependencies]
libfuzzer-sys = "0.3"
arbitrary = { version = "0.4", features = ["derive"] }
ahash = "0.6"
libfuzzer-sys = "0.4"
arbitrary = { version = "1.1", features = ["derive"] }
ahash = "0.7"
db = { package = "forest_db", version = "0.1" }

[dependencies.ipld_amt]
Expand Down
2 changes: 1 addition & 1 deletion ipld/blockstore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ db = { package = "forest_db", version = "0.1" }
encoding = { package = "forest_encoding", version = "0.2" }
forest_ipld = { optional = true, version = "0.1" }
byteorder = "1.3"
dashmap = "4.0"
dashmap = "5.0"

[dev-dependencies]
commcid = { path = "../../utils/commcid" }
Expand Down
6 changes: 3 additions & 3 deletions ipld/car/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ authors = ["ChainSafe Systems <info@chainsafe.io>"]
edition = "2021"

[dependencies]
fvm_shared = "0.2.0"
fvm_shared = "0.2"
cid = { package = "forest_cid", version = "0.3", features = ["cbor"] }
forest_encoding = "0.2.1"
forest_encoding = "0.2"
blockstore = { package = "ipld_blockstore", version = "0.1" }
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
futures = "0.3.5"
futures = "0.3"
integer-encoding = { version = "3.0", features = ["futures_async"] }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions ipld/cid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ features = ["cbor", "json"]
[dependencies]
fvm_shared = { version = "0.2", default-features = false }
cid = { version = "0.8", default-features = false, features = ["std"] }
multihash = { version = "0.16.1", default-features = false, features = [
multihash = { version = "0.16", default-features = false, features = [
"std",
"blake2b",
"derive",
Expand All @@ -28,7 +28,7 @@ generic-array = "0.14"

[dev-dependencies]
serde_json = "1.0"
serde_ipld_dagcbor = "0.1.0"
serde_ipld_dagcbor = "0.1"

[features]
cbor = ["serde", "serde_bytes"]
Expand Down
26 changes: 13 additions & 13 deletions ipld/graphsync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@ authors = ["ChainSafe Systems <info@chainsafe.io>"]
edition = "2021"

[dependencies]
protobuf = "2.14.0"
protobuf = "2.14"
cid = { package = "forest_cid", version = "0.3" }
forest_ipld = "0.1.1"
fnv = "1.0.6"
encoding = { package = "forest_encoding", version = "0.2.1" }
forest_ipld = "0.1"
fnv = "1.0"
encoding = { package = "forest_encoding", version = "0.2" }
libp2p = { version = "0.40.0-rc.1", default-features = false }
futures = "0.3.5"
futures-util = "0.3.5"
futures_codec = "0.4.0"
log = "0.4.8"
futures = "0.3"
futures-util = "0.3"
futures_codec = "0.4"
log = "0.4"
bytes = "1.0"
unsigned-varint = { version = "0.6", features = ["futures-codec"] }
smallvec = "1.1.0"
unsigned-varint = { version = "0.7", features = ["futures-codec"] }
smallvec = "1.1"
async-trait = "0.1"
serde = { version = "1.0", features = ["derive"] }
ipld_blockstore = "0.1"

[build-dependencies]
protoc-rust = "2.14.0"
protoc-rust = "2.14"

[dev-dependencies]
multihash = { version = "0.16.1", default-features = false, features = ["std", "blake2b", "derive"] }
multihash = { version = "0.16", default-features = false, features = ["std", "blake2b", "derive"] }
async-std = "1.9"
rand = "0.8"
rand = "0.8"
2 changes: 1 addition & 1 deletion ipld/hamt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/ChainSafe/forest"
[dependencies]
forest_encoding = "0.2"
serde = { version = "1.0", features = ["derive"] }
libipld-core = { version = "0.13.1", features = ["serde-codec"] }
libipld-core = { version = "0.13", features = ["serde-codec"] }
byteorder = "1.3"
cid = { package = "forest_cid", version = "0.3" }
db = { package = "forest_db", version = "0.1" }
Expand Down
14 changes: 7 additions & 7 deletions key_management/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ thiserror = "1.0"
address = { package = "forest_address", version = "0.3" }
crypto = { package = "forest_crypto", version = "0.5", features = ["json", "blst"] }
bls-signatures = { version = "0.11", default-features = false, features = ["blst"] }
libsecp256k1 = "0.7.0"
rand = "0.8.4"
encoding = { package = "forest_encoding", version = "0.2.1" }
libsecp256k1 = "0.7"
rand = "0.8"
encoding = { package = "forest_encoding", version = "0.2" }
serde = { version = "1.0", features = ["derive"] }
serde_ipld_dagcbor = "0.1.0"
serde_ipld_dagcbor = "0.1"
base64 = { version = "0.13" }
serde_json = "1.0.57"
log = "0.4.8"
sodiumoxide = "0.2.6"
serde_json = "1.0"
log = "0.4"
sodiumoxide = "0.2"
utils = { path = "../node/utils" }

[features]
Expand Down
4 changes: 2 additions & 2 deletions node/db/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ edition = "2021"
repository = "https://github.com/ChainSafe/forest"

[dependencies]
rocksdb = { version = "0.17", optional = true }
rocksdb = { version = "0.18", optional = true }
sled = { version = "0.34", optional = true }
parking_lot = "0.11"
parking_lot = "0.12"
encoding = { package = "forest_encoding", version = "0.2" }
thiserror = "1.0"
num_cpus = "1.13"
Expand Down
20 changes: 10 additions & 10 deletions node/forest_libp2p/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,36 +21,36 @@ libp2p = { version = "0.40.0-rc.1", default-features = false, features = [
"request-response",
"websocket",
] }
multihash = { version = "0.16.1", default-features = false, features = [
multihash = { version = "0.16", default-features = false, features = [
"std",
"multihash-impl",
"identity",
"sha2",
] }
futures = "0.3.5"
futures-util = "0.3.5"
asynchronous-codec = "0.6.0"
log = "0.4.8"
futures = "0.3"
futures-util = "0.3"
asynchronous-codec = "0.6"
log = "0.4"
async-std = "1.9"
serde = { version = "1.0", features = ["derive"] }
forest_blocks = { path = "../../blockchain/blocks" }
forest_message = "0.7"
forest_encoding = "0.2.1"
forest_encoding = "0.2"
forest_cid = { version = "0.3" }
bytes = "1.0"
fnv = "1.0.6"
smallvec = "1.1.0"
fnv = "1.0"
smallvec = "1.1"
chain = { path = "../../blockchain/chain" }
clock = { package = "fil_clock", path = "../clock" }
db = { package = "forest_db", version = "0.1" }
forest_car = { path = "../../ipld/car" }
num-bigint = { path = "../../utils/bigint", package = "forest_bigint" }
libp2p-bitswap = { git = "https://github.com/ChainSafe/libp2p-bitswap", rev = "8d3913ea7fc1e693776c83eecc7a9675c3426446" }
tiny-cid = "0.2.0"
tiny-cid = "0.2"
ipld_blockstore = "0.1"
async-trait = "0.1"
lazy_static = "1.4"
git-version = "0.3.4"
git-version = "0.3"
serde_ipld_dagcbor = "0.1.0"

[dev-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions node/rpc-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ forest_libp2p = { path = "../forest_libp2p" }
ipld = { package = "forest_ipld", path = "../../ipld", features = ["json"] }
message = { package = "forest_message", version = "0.7", features = ["json", "blst"] }
message_pool = { path = "../../blockchain/message_pool" }
num-bigint = { path = "../../utils/bigint", package = "forest_bigint", version = "0.1.1" }
num-bigint = { path = "../../utils/bigint", package = "forest_bigint", version = "0.1" }
state_manager = { package = "state_manager", path = "../../blockchain/state_manager" }
vm = { package = "forest_vm", version = "0.3" }
wallet = { package = "key_management", path = "../../key_management", features = ["json"] }
# Public
async-std = { version = "1.9", features = ["attributes"] }
once_cell = "1.7.2"
serde = { version = "1.0.101", default-features = false, features = ["derive"] }
once_cell = "1.7"
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = "1.0"
libp2p = { version = "0.40.0-rc.1", default-features = false }

[dependencies.jsonrpc-v2]
version = "0.10.1"
version = "0.10"
features = ["easy-errors", "macros", "bytes-v05"]
default-features = false

Expand Down
8 changes: 4 additions & 4 deletions node/rpc-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ version = "0.1.0"
[dependencies]
# Public
async-std = { version="1.9", features=["attributes"] }
log = "0.4.8"
once_cell = "1.7.2"
log = "0.4"
once_cell = "1.7"
serde = "1.0"
serde_json = "1.0"
surf = { version = "2.3.0", default-features = false, features = ["curl-client"] }
surf = { version = "2.3", default-features = false, features = ["curl-client"] }
# Internal
address = { package="forest_address", version="0.3", features=["json"] }
auth = { path="../../utils/auth" }
Expand All @@ -26,4 +26,4 @@ wallet = { package="key_management", path="../../key_management", features=["jso
[dependencies.jsonrpc-v2]
default-features = false
features = ["easy-errors", "macros", "bytes-v05"]
version = "0.10.1"
version = "0.10"
36 changes: 18 additions & 18 deletions node/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ edition = "2021"
async-std = { version = "1.9", features = ["attributes"] }
base64 = "0.13"
bls-signatures = { version = "0.11", default-features = false, features = ["blst"] }
crossbeam = "0.8.0"
futures = "0.3.5"
hex = "0.4.2"
log = "0.4.8"
multibase = "0.9.0"
num-traits = "0.2.11"
rand = "0.7"
rand_distr = "0.3"
serde = { version = "1.0.101", default-features = false, features = ["derive"] }
serde_json = "1.0.48"
tide = "0.16.0"
tide-websockets = "0.4.0"
crossbeam = "0.8"
futures = "0.3"
hex = "0.4"
log = "0.4"
multibase = "0.9"
num-traits = "0.2"
rand = "0.8"
rand_distr = "0.4"
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = "1.0"
tide = "0.16"
tide-websockets = "0.4"
# Internal
actor = { package = "actor_interface", path = "../../vm/actor_interface" }
address = { package = "forest_address", version = "0.3", features = ["json"] }
Expand All @@ -33,7 +33,7 @@ chain = { path = "../../blockchain/chain", features = ["json"] }
chain_sync = { path = "../../blockchain/chain_sync" }
cid = { package = "forest_cid", version = "0.3", features = ["json"] }
crypto = { package = "forest_crypto", version = "0.5", features = ["json", "blst"] }
encoding = { package = "forest_encoding", version = "0.2.1" }
encoding = { package = "forest_encoding", version = "0.2" }
fil_types = "0.2"
forest_libp2p = { path = "../forest_libp2p" }
interpreter = { path = "../../vm/interpreter/" }
Expand All @@ -42,19 +42,19 @@ ipld_amt = "1.0"
message = { package = "forest_message", version = "0.7", features = ["json", "blst"] }
message_pool = { path = "../../blockchain/message_pool" }
networks = { path = "../../types/networks" }
num-bigint = { version = "0.1.1", package = "forest_bigint" }
num-bigint = { version = "0.1", package = "forest_bigint" }
rpc-api = { path = "../rpc-api", version = "0.1" }
state_manager = { package = "state_manager", path = "../../blockchain/state_manager" }
state_tree = { path = "../../vm/state_tree" }
wallet = { package = "key_management", path = "../../key_management", features = ["json"] }

[dependencies.jsonrpc-v2]
version = "0.10.1"
version = "0.10"
features = ["easy-errors", "macros", "bytes-v05"]
default-features = false

[dev-dependencies]
db = { package = "forest_db", version = "0.1" }
futures = "0.3.5"
hex = "0.4.2"
test_utils = { version = "0.1.0", path = "../../utils/test_utils/", features = ["test_constructors"] }
futures = "0.3"
hex = "0.4"
test_utils = { version = "0.1", path = "../../utils/test_utils/", features = ["test_constructors"] }
Loading

0 comments on commit 619068a

Please sign in to comment.