Skip to content

Commit 7bb822c

Browse files
committed
fix: dependencies of contracts
1 parent 6ecbc7a commit 7bb822c

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

integration-tests/internal/e2e-runtime-only-backend/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ edition = "2024"
66
publish = false
77

88
[dependencies]
9-
ink = { path = "../../../crates/ink", default-features = false }
9+
ink = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.4", default-features = false }
1010

1111
[dev-dependencies]
12-
ink_e2e = { path = "../../../crates/e2e" }
12+
ink_e2e = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.4" }
1313
ink_sandbox = { path = "../../../crates/sandbox" }
1414

1515
[lib]

integration-tests/public/contract-transfer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ edition = "2024"
66
publish = false
77

88
[dependencies]
9-
ink = { path = "../../../crates/ink", default-features = false }
9+
ink = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.4", default-features = false }
1010

1111
[dev-dependencies]
12-
ink_e2e = { path = "../../../crates/e2e" }
12+
ink_e2e = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.4" }
1313
ink_sandbox = { path = "../../../crates/sandbox" }
1414

1515
[lib]

integration-tests/public/contract-xcm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ edition = "2024"
66
publish = false
77

88
[dependencies]
9-
ink = { path = "../../../crates/ink", default-features = false, features = ["unstable-hostfn"] }
9+
ink = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.4", default-features = false, features = ["unstable-hostfn"] }
1010
frame-support = { git = "https://github.com/use-ink/polkadot-sdk.git", rev = "a71ec19a94702ea71767ba5ac97603ea6c6305c1", default-features = false }
1111
pallet-balances = { git = "https://github.com/use-ink/polkadot-sdk.git", rev = "a71ec19a94702ea71767ba5ac97603ea6c6305c1", default-features = false }
1212

1313
[dev-dependencies]
14-
ink_e2e = { path = "../../../crates/e2e" }
14+
ink_e2e = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.4" }
1515
ink_sandbox = { path = "../../../crates/sandbox" }
1616

1717
[lib]

integration-tests/public/fuzz-testing/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ edition = "2024"
66
publish = false
77

88
[dependencies]
9-
ink = { path = "../../../crates/ink", default-features = false }
9+
ink = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.4", default-features = false }
1010

1111
[dev-dependencies]
12-
ink_e2e = { path = "../../../crates/e2e" }
12+
ink_e2e = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.4"}
1313
ink_sandbox = { path = "../../../crates/sandbox" }
1414

1515
# for fuzz testing

integration-tests/solidity-abi/sol-cross-contract/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ edition = "2024"
66
publish = false
77

88
[dependencies]
9-
ink = { path = "../../../crates/ink", default-features = false }
9+
ink = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.4", default-features = false }
1010
sha3 = { version = "0.10", default-features = false }
1111

1212
[dev-dependencies]
13-
ink_e2e = { path = "../../../crates/e2e" }
13+
ink_e2e = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.4" }
1414
ink_sandbox = { path = "../../../crates/sandbox" }
1515
ink_revive_types = { path = "../../../crates/revive-types" }
1616
sha3 = { version = "0.10" }

integration-tests/solidity-abi/sol-encoding/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ edition = "2024"
66
publish = false
77

88
[dependencies]
9-
ink = { path = "../../../crates/ink", default-features = false }
9+
ink = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.4", default-features = false }
1010

1111
[dev-dependencies]
12-
ink_e2e = { path = "../../../crates/e2e" }
12+
ink_e2e = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.4" }
1313
ink_sandbox = { path = "../../../crates/sandbox" }
1414
ink_revive_types = { path = "../../../crates/revive-types" }
1515
sha3 = { version = "0.10" }

0 commit comments

Comments
 (0)