Skip to content

Commit

Permalink
Add missing unstable feature for integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cmichi committed Jan 8, 2025
1 parent 0a1d59d commit 89e7f82
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion integration-tests/internal/mother/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
publish = false

[dependencies]
ink = { path = "../../../crates/ink", default-features = false }
ink = { path = "../../../crates/ink", default-features = false, features = ["unstable"] }

[dev-dependencies]
ink_e2e = { path = "../../../crates/e2e" }
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/internal/sr25519-verification/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
publish = false

[dependencies]
ink = { path = "../../../crates/ink", default-features = false }
ink = { path = "../../../crates/ink", default-features = false, features = ["unstable"] }

[dev-dependencies]
ink_e2e = { path = "../../../crates/e2e" }
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/public/call-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
publish = false

[dependencies]
ink = { path = "../../../crates/ink", default-features = false }
ink = { path = "../../../crates/ink", default-features = false, features = ["unstable"] }

# Substrate
#
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/public/contract-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
publish = false

[dependencies]
ink = { path = "../../../crates/ink", default-features = false }
ink = { path = "../../../crates/ink", default-features = false, features = ["unstable"] }

[dev-dependencies]
ink_e2e = { path = "../../../crates/e2e" }
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/public/dns/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
publish = false

[dependencies]
ink = { path = "../../../crates/ink", default-features = false }
ink = { path = "../../../crates/ink", default-features = false, features = ["unstable"] }

[lib]
path = "lib.rs"
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/public/psp22-extension/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
publish = false

[dependencies]
ink = { path = "../../../crates/ink", default-features = false }
ink = { path = "../../../crates/ink", default-features = false, features = ["unstable"] }

[lib]
path = "lib.rs"
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/public/trait-erc20/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
publish = false

[dependencies]
ink = { path = "../../../crates/ink", default-features = false }
ink = { path = "../../../crates/ink", default-features = false, features = ["unstable"] }

[lib]
path = "lib.rs"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
publish = false

[dependencies]
ink = { path = "../../../../crates/ink", default-features = false }
ink = { path = "../../../crates/ink", default-features = false, features = ["unstable"] }
delegatee = { path = "delegatee", default-features = false, features = ["ink-as-dependency"] }
delegatee2 = { path = "delegatee2", default-features = false, features = ["ink-as-dependency"] }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
publish = false

[dependencies]
ink = { path = "../../../../../crates/ink", default-features = false }
ink = { path = "../../../crates/ink", default-features = false, features = ["unstable"] }

[lib]
path = "lib.rs"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
publish = false

[dependencies]
ink = { path = "../../../../../crates/ink", default-features = false }
ink = { path = "../../../crates/ink", default-features = false, features = ["unstable"] }

[lib]
path = "lib.rs"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
publish = false

[dependencies]
ink = { path = "../../../../../crates/ink", default-features = false }
ink = { path = "../../../crates/ink", default-features = false, features = ["unstable"] }

[lib]
path = "lib.rs"
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/public/wildcard-selector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
publish = false

[dependencies]
ink = { path = "../../../crates/ink", default-features = false }
ink = { path = "../../../crates/ink", default-features = false, features = ["unstable"] }

[dev-dependencies]
ink_e2e = { path = "../../../crates/e2e" }
Expand Down

0 comments on commit 89e7f82

Please sign in to comment.