Skip to content

Commit

Permalink
bump fuel-core version 0.16 (#952)
Browse files Browse the repository at this point in the history
  • Loading branch information
Voxelot committed Jan 27, 2023
1 parent 9ca79a4 commit 1716472
Show file tree
Hide file tree
Showing 24 changed files with 98 additions and 98 deletions.
42 changes: 21 additions & 21 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion benches/benches-outputs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ license = "BUSL-1.1"
publish = false

[dependencies]
fuel-core-types = { path = "../../crates/types", version = "0.15.1", default-features = false, features = ["random", "test-helpers"] }
fuel-core-types = { path = "../../crates/types", version = "0.16.0", default-features = false, features = ["random", "test-helpers"] }

[workspace]
6 changes: 3 additions & 3 deletions bin/fuel-core-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-core-client-bin"
version = "0.15.1"
version = "0.16.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
categories = ["concurrency", "cryptography::cryptocurrencies", "emulators"]
edition = "2021"
Expand All @@ -16,8 +16,8 @@ path = "src/main.rs"

[dependencies]
clap = { version = "4.1", features = ["derive"] }
fuel-core-client = { version = "0.15.1", path = "../../crates/client" }
fuel-core-types = { version = "0.15.1", path = "../../crates/types", features = ["serde"] }
fuel-core-client = { version = "0.16.0", path = "../../crates/client" }
fuel-core-types = { version = "0.16.0", path = "../../crates/types", features = ["serde"] }
serde_json = { version = "1.0", features = ["raw_value"] }
tokio = { version = "1.21", features = ["macros"] }

4 changes: 2 additions & 2 deletions bin/fuel-core-keygen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-core-keygen"
version = "0.15.1"
version = "0.16.0"
edition = "2021"
homepage = "https://fuel.network/"
keywords = ["blockchain", "cryptocurrencies", "fuel-vm", "vm"]
Expand All @@ -12,5 +12,5 @@ description = "Command line utilities for fuel-core key management"
[dependencies]
anyhow = "1.0"
clap = { version = "4.1", features = ["derive", "env"] }
fuel-core-types = { version = "0.15.1", path = "../../crates/types", features = ["serde", "random"] }
fuel-core-types = { version = "0.16.0", path = "../../crates/types", features = ["serde", "random"] }
serde_json = { version = "1.0", features = ["raw_value"] }
4 changes: 2 additions & 2 deletions bin/fuel-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ homepage = "https://fuel.network/"
keywords = ["blockchain", "cryptocurrencies", "fuel-vm", "vm"]
license = "BUSL-1.1"
repository = "https://github.com/FuelLabs/fuel-core"
version = "0.15.1"
version = "0.16.0"
name = "fuel-core-bin"
publish = false

Expand All @@ -19,7 +19,7 @@ path = "src/main.rs"
anyhow = "1.0"
clap = { version = "4.1", features = ["derive", "env"] }
dirs = "4.0"
fuel-core = { path = "../../crates/fuel-core", version = "0.15.1" }
fuel-core = { path = "../../crates/fuel-core", version = "0.16.0" }
humantime = "2.1"
lazy_static = "1.4"
serde_json = { version = "1.0", features = ["raw_value"], optional = true }
Expand Down
6 changes: 3 additions & 3 deletions crates/chain-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-core-chain-config"
version = "0.15.1"
version = "0.16.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
categories = ["cryptography::cryptocurrencies"]
edition = "2021"
Expand All @@ -13,8 +13,8 @@ description = "Fuel Chain config types"
[dependencies]
anyhow = "1.0"
bech32 = "0.9.0"
fuel-core-storage = { path = "../storage", version = "0.15.1" }
fuel-core-types = { path = "../types", version = "0.15.1", features = [
fuel-core-storage = { path = "../storage", version = "0.16.0" }
fuel-core-types = { path = "../types", version = "0.16.0", features = [
"serde",
"random",
] }
Expand Down
4 changes: 2 additions & 2 deletions crates/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-core-client"
version = "0.15.1"
version = "0.16.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
categories = ["concurrency", "cryptography::cryptocurrencies", "emulators"]
edition = "2021"
Expand All @@ -15,7 +15,7 @@ anyhow = "1.0"
cynic = { version = "2.2.1", features = ["http-reqwest"] }
derive_more = { version = "0.99" }
eventsource-client = "0.10.2"
fuel-core-types = { version = "0.15.1", path = "../types", features = ["serde"] }
fuel-core-types = { version = "0.16.0", path = "../types", features = ["serde"] }
futures = "0.3"
hex = "0.4"
# Included to enable webpki in the eventsource client
Expand Down
6 changes: 3 additions & 3 deletions crates/database/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-core-database"
version = "0.15.1"
version = "0.16.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
categories = ["cryptography::cryptocurrencies"]
edition = "2021"
Expand All @@ -12,8 +12,8 @@ description = "The crates contains databases used by Fuel core protocol."

[dependencies]
anyhow = "1.0"
fuel-core-storage = { path = "../storage", version = "0.15.1" }
fuel-core-types = { path = "../types", version = "0.15.1" }
fuel-core-storage = { path = "../storage", version = "0.16.0" }
fuel-core-types = { path = "../types", version = "0.16.0" }
thiserror = "1.0"

[dev-dependencies]
Expand Down
32 changes: 16 additions & 16 deletions crates/fuel-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["blockchain", "cryptocurrencies", "fuel-vm", "vm"]
license = "BUSL-1.1"
name = "fuel-core"
repository = "https://github.com/FuelLabs/fuel-core"
version = "0.15.1"
version = "0.16.0"

[dependencies]
anyhow = "1.0"
Expand All @@ -20,21 +20,21 @@ axum = { version = "0.5" }
clap = { version = "4.1", features = ["derive"] }
derive_more = { version = "0.99" }
enum-iterator = "1.2"
fuel-core-chain-config = { path = "../chain-config", version = "0.15.1" }
fuel-core-consensus-module = { path = "../../crates/services/consensus_module", version = "0.15.1" }
fuel-core-database = { path = "../database", version = "0.15.1" }
fuel-core-executor = { path = "../services/executor", version = "0.15.1" }
fuel-core-importer = { path = "../services/importer", version = "0.15.1" }
fuel-core-metrics = { path = "../metrics", version = "0.15.1", optional = true }
fuel-core-p2p = { path = "../services/p2p", version = "0.15.1", optional = true }
fuel-core-poa = { path = "../services/consensus_module/poa", version = "0.15.1" }
fuel-core-producer = { path = "../services/producer", version = "0.15.1" }
fuel-core-relayer = { path = "../services/relayer", version = "0.15.1", optional = true }
fuel-core-services = { path = "../services", version = "0.15.1" }
fuel-core-storage = { path = "../storage", version = "0.15.1" }
fuel-core-sync = { path = "../services/sync", version = "0.15.1", optional = true }
fuel-core-txpool = { path = "../services/txpool", version = "0.15.1" }
fuel-core-types = { path = "../types", version = "0.15.1", features = [
fuel-core-chain-config = { path = "../chain-config", version = "0.16.0" }
fuel-core-consensus-module = { path = "../../crates/services/consensus_module", version = "0.16.0" }
fuel-core-database = { path = "../database", version = "0.16.0" }
fuel-core-executor = { path = "../services/executor", version = "0.16.0" }
fuel-core-importer = { path = "../services/importer", version = "0.16.0" }
fuel-core-metrics = { path = "../metrics", version = "0.16.0", optional = true }
fuel-core-p2p = { path = "../services/p2p", version = "0.16.0", optional = true }
fuel-core-poa = { path = "../services/consensus_module/poa", version = "0.16.0" }
fuel-core-producer = { path = "../services/producer", version = "0.16.0" }
fuel-core-relayer = { path = "../services/relayer", version = "0.16.0", optional = true }
fuel-core-services = { path = "../services", version = "0.16.0" }
fuel-core-storage = { path = "../storage", version = "0.16.0" }
fuel-core-sync = { path = "../services/sync", version = "0.16.0", optional = true }
fuel-core-txpool = { path = "../services/txpool", version = "0.16.0" }
fuel-core-types = { path = "../types", version = "0.16.0", features = [
"serde",
] }
futures = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/metrics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-core-metrics"
version = "0.15.1"
version = "0.16.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
categories = ["cryptography::cryptocurrencies"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion crates/services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["bft", "blockchain", "consensus", "fuel"]
license = "BUSL-1.1"
name = "fuel-core-services"
repository = "https://github.com/FuelLabs/fuel-core"
version = "0.15.1"
version = "0.16.0"

[dependencies]
anyhow = "1.0"
Expand Down
8 changes: 4 additions & 4 deletions crates/services/consensus_module/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ keywords = ["blockchain", "consensus", "fuel"]
license = "BUSL-1.1"
name = "fuel-core-consensus-module"
repository = "https://github.com/FuelLabs/fuel-core"
version = "0.15.1"
version = "0.16.0"

[dependencies]
anyhow = "1.0"
fuel-core-chain-config = { version = "0.15.1", path = "../../chain-config" }
fuel-core-poa = { version = "0.15.1", path = "poa" }
fuel-core-types = { version = "0.15.1", path = "../../types" }
fuel-core-chain-config = { version = "0.16.0", path = "../../chain-config" }
fuel-core-poa = { version = "0.16.0", path = "poa" }
fuel-core-types = { version = "0.16.0", path = "../../types" }

[dev-dependencies]
fuel-core-types = { path = "../../types", features = ["test-helpers"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/services/consensus_module/bft/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-core-bft"
version = "0.15.1"
version = "0.16.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand Down
Loading

0 comments on commit 1716472

Please sign in to comment.