Skip to content

Commit

Permalink
Revert non-workspace Cargo.toml (#6179)
Browse files Browse the repository at this point in the history
  • Loading branch information
alfiedotwtf committed Sep 9, 2024
1 parent 75ae8f6 commit 6ba80ff
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions test/src/sdk-harness/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,26 @@ version = "0.0.0"
publish = false

[dependencies]
assert_matches.workspace = true
assert_matches = "1.5.0"

# Dependencies from the `fuel-core` repository:
fuel-core = { workspace = true, default-features = false }
fuel-core-client = { workspace = true, default-features = false }
fuel-core = { version = "0.32.1", default-features = false }
fuel-core-client = { version = "0.32.1", default-features = false }

# Dependencies from the `fuel-vm` repository:
fuel-vm = { workspace = true, features = ["random"] }
fuel-vm = { version = "0.56.0", features = ["random"] }

# Dependencies from the `fuels-rs` repository:
fuels = { workspace = true, features = ["fuel-core-lib"] }
fuels = { version = "0.66.1", features = ["fuel-core-lib"] }

hex.workspace = true
paste.workspace = true
pretty_assertions.workspace = true
rand.workspace = true
sha2.workspace = true
sha3.workspace = true
tai64 = { workspace = true, features = ["serde"] }
tokio = { workspace = true, features = ["macros", "rt"] }
hex = "0.4.3"
paste = "1.0.14"
pretty_assertions = "1.4.0"
rand = "0.8"
sha2 = "0.10"
sha3 = "0.10.1"
tai64 = { version = "4.0", features = ["serde"] }
tokio = { version = "1.12", features = ["macros", "rt"] }

[[test]]
harness = true
Expand Down

0 comments on commit 6ba80ff

Please sign in to comment.