Skip to content

Commit

Permalink
Merge branch 'Salka1988/contract_set_estimation' of github.com:FuelLa…
Browse files Browse the repository at this point in the history
…bs/fuels-rs into Salka1988/contract_set_estimation

� Conflicts:
�	packages/fuels-contract/Cargo.toml
�	packages/fuels-signers/Cargo.toml
�	packages/fuels-test-helpers/Cargo.toml
�	packages/fuels/Cargo.toml
  • Loading branch information
Salka1988 committed Nov 5, 2022
2 parents 51b65b2 + 3e624f2 commit 8cb94fe
Show file tree
Hide file tree
Showing 18 changed files with 51 additions and 51 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
CARGO_TERM_COLOR: always
DASEL_VERSION: https://github.com/TomWright/dasel/releases/download/v1.24.3/dasel_linux_amd64
RUSTFLAGS: "-D warnings"
FUEL_CORE_VERSION: 0.13.2
FUEL_CORE_VERSION: 0.14.0
RUST_VERSION: 1.64.0
FORC_VERSION: 0.30.0

Expand Down
2 changes: 1 addition & 1 deletion docs/src/providers/short-lived.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ let wallet = launch_provider_and_get_wallet().await;
The `fuel-core-lib` is a feature defined in the `fuels` library, allowing us to run a `fuel-core` node without installing the `fuel-core` binary on the local machine. Using the `fuel-core-lib` feature flag entails downloading all the dependencies needed to run the fuel-core node.

```rust,ignore
fuels = { version = "0.29.0", features = ["fuel-core-lib"] }
fuels = { version = "0.30.0", features = ["fuel-core-lib"] }
```
2 changes: 1 addition & 1 deletion examples/contracts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "Fuel Rust SDK contract examples."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
fuels = { version = "0.29.0", path = "../../packages/fuels" }
fuels = { version = "0.30.0", path = "../../packages/fuels" }
rand = "0.8"
tokio = { version = "1.10", features = ["full"] }

Expand Down
2 changes: 1 addition & 1 deletion examples/cookbook/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ repository = "https://github.com/FuelLabs/fuels-rs"
description = "Fuel Rust SDK cookbook examples."

[dependencies]
fuels = { version = "0.29.0", path = "../../packages/fuels" }
fuels = { version = "0.30.0", path = "../../packages/fuels" }
rand = "0.8"
tokio = { version = "1.10", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/debugging/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/FuelLabs/fuels-rs"
description = "Fuel Rust SDK debugging examples."

[dependencies]
fuels = { version = "0.29.0", path = "../../packages/fuels" }
fuels = { version = "0.30.0", path = "../../packages/fuels" }
rand = "0.8.5"
tokio = { version = "1.10", features = ["full"] }

Expand Down
2 changes: 1 addition & 1 deletion examples/predicates/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ repository = "https://github.com/FuelLabs/fuels-rs"
description = "Fuel Rust SDK cookbook examples."

[dependencies]
fuels = { version = "0.29.0", path = "../../packages/fuels" }
fuels = { version = "0.30.0", path = "../../packages/fuels" }
rand = "0.8"
tokio = { version = "1.10", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/providers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ repository = "https://github.com/FuelLabs/fuels-rs"
description = "Fuel Rust SDK provider examples."

[dependencies]
fuels = { version = "0.29.0", path = "../../packages/fuels" }
fuels = { version = "0.30.0", path = "../../packages/fuels" }
rand = "0.8.5"
tokio = { version = "1.10", features = ["full"] }
4 changes: 2 additions & 2 deletions examples/rust_bindings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ description = "Fuel Rust SDK examples for Rust-native bindings"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
fuels = { version = "0.29.0", path = "../../packages/fuels" }
fuels-abigen-macro = { version = "0.29.0", path = "../../packages/fuels-abigen-macro" }
fuels = { version = "0.30.0", path = "../../packages/fuels" }
fuels-abigen-macro = { version = "0.30.0", path = "../../packages/fuels-abigen-macro" }
proc-macro2 = "1.0"
rand = "0.8"
tokio = { version = "1.10", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ description = "Fuel Rust SDK types examples."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
fuels = { version = "0.29.0", path = "../../packages/fuels" }
fuels = { version = "0.30.0", path = "../../packages/fuels" }
rand = "0.8"
tokio = { version = "1.10", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/wallets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ repository = "https://github.com/FuelLabs/fuels-rs"
description = "Fuel Rust SDK wallet examples."

[dependencies]
fuels = { version = "0.29.0", path = "../../packages/fuels" }
fuels = { version = "0.30.0", path = "../../packages/fuels" }
rand = "0.8.5"
tokio = { version = "1.10", features = ["full"] }
4 changes: 2 additions & 2 deletions packages/fuels-abigen-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuels-abigen-macro"
version = "0.29.0"
version = "0.30.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -13,7 +13,7 @@ proc-macro = true

[dependencies]
Inflector = "0.11"
fuels-core = { version = "0.29.0", path = "../fuels-core" }
fuels-core = { version = "0.30.0", path = "../fuels-core" }
proc-macro2 = "1.0"
quote = "1.0"
rand = "0.8"
Expand Down
10 changes: 5 additions & 5 deletions packages/fuels-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuels-contract"
version = "0.29.0"
version = "0.30.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -11,11 +11,11 @@ description = "Fuel Rust SDK contracts."
[dependencies]
anyhow = "1"
bytes = { version = "1.0.1", features = ["serde"] }
fuel-gql-client = { version = "0.14.0", default-features = false }
fuel-gql-client = { version = "0.14", default-features = false }
fuel-tx = "0.23"
fuels-core = { version = "0.29.0", path = "../fuels-core" }
fuels-signers = { version = "0.29.0", path = "../fuels-signers" }
fuels-types = { version = "0.29.0", path = "../fuels-types" }
fuels-core = { version = "0.30.0", path = "../fuels-core" }
fuels-signers = { version = "0.30.0", path = "../fuels-signers" }
fuels-types = { version = "0.30.0", path = "../fuels-types" }
futures = "0.3.21"
hex = { version = "0.4.3", default-features = false, features = ["std"] }
itertools = "0.10.3"
Expand Down
4 changes: 2 additions & 2 deletions packages/fuels-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuels-core"
version = "0.29.0"
version = "0.30.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -13,7 +13,7 @@ Inflector = "0.11"
anyhow = "1"
fuel-tx = "0.23"
fuel-types = "0.5"
fuels-types = { version = "0.29.0", path = "../fuels-types" }
fuels-types = { version = "0.30.0", path = "../fuels-types" }
hex = { version = "0.4.3", features = ["std"] }
itertools = "0.10"
proc-macro2 = "1.0"
Expand Down
10 changes: 5 additions & 5 deletions packages/fuels-signers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuels-signers"
version = "0.29.0"
version = "0.30.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -13,12 +13,12 @@ async-trait = { version = "0.1.50", default-features = false }
bytes = { version = "1.1.0", features = ["serde"] }
elliptic-curve = { version = "0.11.6", default-features = false }
eth-keystore = { version = "0.3.0" }
fuel-core = { version = "0.14.0", default-features = false, optional = true }
fuel-core = { version = "0.14", default-features = false, optional = true }
fuel-crypto = { version = "0.6", features = ["random"] }
fuel-gql-client = { version = "0.14.0", default-features = false }
fuel-gql-client = { version = "0.14", default-features = false }
fuel-types = { version = "0.5", default-features = false, features = ["random"] }
fuels-core = { version = "0.29.0", path = "../fuels-core" }
fuels-types = { version = "0.29.0", path = "../fuels-types" }
fuels-core = { version = "0.30.0", path = "../fuels-core" }
fuels-types = { version = "0.30.0", path = "../fuels-types" }
hex = { version = "0.4.3", default-features = false, features = ["std"] }
rand = { version = "0.8.4", default-features = false }
serde = { version = "1.0.124", default-features = true, features = ["derive"] }
Expand Down
18 changes: 9 additions & 9 deletions packages/fuels-test-helpers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuels-test-helpers"
version = "0.29.0"
version = "0.30.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -10,15 +10,15 @@ description = "Fuel Rust SDK test helpers."

[dependencies]
anyhow = { version = "1.0.58" }
fuel-core = { version = "0.14.0", default-features = false, optional = true }
fuel-chain-config = { version = "0.14.0", default-features = false }
fuel-core-interfaces = { version = "0.14.0", default-features = false }
fuel-gql-client = { version = "0.14.0", default-features = false }
fuel-core = { version = "0.14", default-features = false, optional = true }
fuel-chain-config = { version = "0.14", default-features = false }
fuel-core-interfaces = { version = "0.14", default-features = false }
fuel-gql-client = { version = "0.14", default-features = false }
fuel-types = { version = "0.5", default-features = false, features = ["random"] }
fuels-contract = { version = "0.29.0", path = "../fuels-contract" }
fuels-core = { version = "0.29.0", path = "../fuels-core" }
fuels-signers = { version = "0.29.0", path = "../fuels-signers", optional = true }
fuels-types = { version = "0.29.0", path = "../fuels-types" }
fuels-contract = { version = "0.30.0", path = "../fuels-contract" }
fuels-core = { version = "0.30.0", path = "../fuels-core" }
fuels-signers = { version = "0.30.0", path = "../fuels-signers", optional = true }
fuels-types = { version = "0.30.0", path = "../fuels-types" }

hex = { version = "0.4.3", default-features = false, features = ["std", "serde"] }
portpicker = { version = "0.1.1" }
Expand Down
2 changes: 1 addition & 1 deletion packages/fuels-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuels-types"
version = "0.29.0"
version = "0.30.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand Down
24 changes: 12 additions & 12 deletions packages/fuels/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuels"
version = "0.29.0"
version = "0.30.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -10,21 +10,21 @@ rust-version = "1.64.0"
description = "Fuel Rust SDK."

[dependencies]
fuel-core = { version = "0.14.0", default-features = false, optional = true }
fuel-gql-client = { version = "0.14.0", default-features = false }
fuels-abigen-macro = { version = "0.29.0", path = "../fuels-abigen-macro" }
fuels-contract = { version = "0.29.0", path = "../fuels-contract" }
fuels-core = { version = "0.29.0", path = "../fuels-core" }
fuels-signers = { version = "0.29.0", path = "../fuels-signers" }
fuels-test-helpers = { version = "0.29.0", path = "../fuels-test-helpers" }
fuels-types = { version = "0.29.0", path = "../fuels-types" }
fuel-core = { version = "0.14", default-features = false, optional = true }
fuel-gql-client = { version = "0.14", default-features = false }
fuels-abigen-macro = { version = "0.30.0", path = "../fuels-abigen-macro" }
fuels-contract = { version = "0.30.0", path = "../fuels-contract" }
fuels-core = { version = "0.30.0", path = "../fuels-core" }
fuels-signers = { version = "0.30.0", path = "../fuels-signers" }
fuels-test-helpers = { version = "0.30.0", path = "../fuels-test-helpers" }
fuels-types = { version = "0.30.0", path = "../fuels-types" }

[dev-dependencies]
anyhow = "1.0.58"
ctor = " 0.1"
fuel-core = { version = "0.14.0", default-features = false }
fuel-core-interfaces = { version = "0.14.0", default-features = false }
fuel-gql-client = { version = "0.14.0", default-features = false }
fuel-core = { version = "0.14", default-features = false }
fuel-core-interfaces = { version = "0.14", default-features = false }
fuel-gql-client = { version = "0.14", default-features = false }
hex = { version = "0.4.3", default-features = false }
sha2 = "0.9.5"
tokio = "1.15.0"
Expand Down
8 changes: 4 additions & 4 deletions tools/fuels-abi-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuels-abi-cli"
version = "0.29.0"
version = "0.30.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -10,9 +10,9 @@ description = "Fuel Rust SDK CLI tool to parse ABI."

[dependencies]
anyhow = "1"
fuels-contract = { version = "0.29.0", path = "../../packages/fuels-contract" }
fuels-core = { version = "0.29.0", path = "../../packages/fuels-core" }
fuels-types = { version = "0.29.0", path = "../../packages/fuels-types" }
fuels-contract = { version = "0.30.0", path = "../../packages/fuels-contract" }
fuels-core = { version = "0.30.0", path = "../../packages/fuels-core" }
fuels-types = { version = "0.30.0", path = "../../packages/fuels-types" }
hex = "0.4"
itertools = "0.10"
structopt = "0.3"

0 comments on commit 8cb94fe

Please sign in to comment.