Skip to content

Commit

Permalink
Rename fuels-rs to fuels-contract (FuelLabs#740)
Browse files Browse the repository at this point in the history
* Rename fuels-rs to fuels-contract

* Sort deps
  • Loading branch information
digorithm authored Feb 3, 2022
1 parent f862bf3 commit 7b47295
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/src/getting-started/forc_project.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Our `tests/harness.rs` file could look like:
```rust
use fuel_tx::Salt;
use fuels_abigen_macro::abigen;
use fuels_rs::contract::Contract;
use fuels_contract::contract::Contract;
use rand::rngs::StdRng;
use rand::{Rng, SeedableRng};

Expand Down
2 changes: 1 addition & 1 deletion forc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Our `tests/harness.rs` file could look like:
```rust
use fuel_tx::Salt;
use fuels_abigen_macro::abigen;
use fuels_rs::contract::Contract;
use fuels_contract::contract::Contract;
use rand::rngs::StdRng;
use rand::{Rng, SeedableRng};

Expand Down
6 changes: 3 additions & 3 deletions forc/src/utils/defaults.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
fuels-abigen-macro = "0.2"
fuels-core = "0.2"
fuels-rs = "0.2"
fuel-gql-client = {{ version = "0.2", default-features = false }}
fuel-tx = "0.3"
fuels-abigen-macro = "0.3"
fuels-contract = "0.3"
fuels-core = "0.3"
rand = "0.8"
tokio = {{ version = "1.12", features = ["rt", "macros"] }}
Expand Down

0 comments on commit 7b47295

Please sign in to comment.