Skip to content

Commit

Permalink
bump to support jnzi (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
Voxelot committed Apr 27, 2022
1 parent d5b554d commit 9c32a78
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions fuel-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ clap = { version = "3.1", features = ["derive"] }
cynic = { version = "0.14", features = ["surf"] }
derive_more = { version = "0.99" }
fuel-storage = "0.1"
fuel-tx = { version = "0.8", features = ["serde-types"] }
fuel-tx = { version = "0.9", features = ["serde-types"] }
fuel-types = { version = "0.3", features = ["serde-types"] }
fuel-vm = { version = "0.7", features = ["serde-types"] }
fuel-vm = { version = "0.8", features = ["serde-types"] }
futures = "0.3"
hex = "0.4"
itertools = "0.10"
Expand Down
6 changes: 3 additions & 3 deletions fuel-core-interfaces/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ anyhow = "1.0"
async-trait = "0.1"
chrono = "0.4"
derive_more = { version = "0.99" }
fuel-asm = "0.3"
fuel-asm = "0.4"
fuel-crypto = { version = "0.4", default-features = false }
fuel-storage = "0.1"
fuel-tx = { version = "0.8", default-features = false }
fuel-tx = { version = "0.9", default-features = false }
fuel-types = { version = "0.3", default-features = false }
fuel-vm = { version = "0.7", default-features = false }
fuel-vm = { version = "0.8", default-features = false }
futures = "0.3"
lazy_static = "1.4"
parking_lot = "0.12"
Expand Down
10 changes: 5 additions & 5 deletions fuel-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@ clap = { version = "3.1", features = ["env", "derive"] }
derive_more = { version = "0.99" }
dirs = "3.0"
env_logger = "0.9"
fuel-asm = { version = "0.3", features = ["serde-types"] }
fuel-asm = { version = "0.4", features = ["serde-types"] }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.5.0", features = [
"serde-types",
] }
fuel-crypto = { version = "0.4" }
fuel-merkle = "0.1"
fuel-storage = { version = "0.1" }
fuel-tx = { version = "0.8", features = ["serde-types"] }
fuel-tx = { version = "0.9", features = ["serde-types"] }
fuel-txpool = { path = "../fuel-txpool", version = "0.5.0" }
fuel-types = { version = "0.3", features = ["serde-types"] }
fuel-vm = { version = "0.7", features = ["serde-types"] }
fuel-vm = { version = "0.8", features = ["serde-types"] }
futures = "0.3"
graphql-parser = "0.3.0"
hex = { version = "0.4", features = ["serde"] }
Expand Down Expand Up @@ -70,12 +70,12 @@ uuid = { version = "0.8", features = ["v4"] }

[dev-dependencies]
assert_matches = "1.5"
fuel-tx = { version = "0.8", features = [
fuel-tx = { version = "0.9", features = [
"serde-types",
"builder",
"internals",
] }
fuel-vm = { version = "0.7", features = [
fuel-vm = { version = "0.8", features = [
"serde-types",
"random",
"test-helpers",
Expand Down
4 changes: 2 additions & 2 deletions fuel-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ chrono = { version = "0.4", features = ["serde"] }
fuel-core = { path = "../fuel-core", features = ["test-helpers"], default-features = false }
fuel-gql-client = { path = "../fuel-client", features = ["test-helpers"] }
fuel-storage = "0.1"
fuel-tx = { version = "0.8", features = ["serde-types"] }
fuel-tx = { version = "0.9", features = ["serde-types"] }
fuel-types = { version = "0.3", features = ["serde-types"] }
fuel-vm = { version = "0.7", features = ["serde-types", "random","test-helpers"] }
fuel-vm = { version = "0.8", features = ["serde-types", "random","test-helpers"] }
insta = "1.8"
itertools = "0.10"
rand = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion fuel-txpool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ anyhow = "1.0"
async-trait = "0.1"
chrono = "0.4"
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.5.0" }
fuel-tx = { version = "0.8", features = ["serde-types"] }
fuel-tx = { version = "0.9", features = ["serde-types"] }
fuel-types = { version = "0.3", features = ["serde-types"] }
futures = "0.3"
parking_lot = "0.11"
Expand Down

0 comments on commit 9c32a78

Please sign in to comment.