Skip to content

Commit

Permalink
Add unstable for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
cmichi committed Jan 8, 2025
1 parent 89e7f82 commit e54e96e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion linting/extra/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if_chain = "1.0.2"
log = "0.4.14"
regex = "1.5.4"
ink_linting_utils = { workspace = true }
ink_env = { version = "=5.1.0", path = "../../crates/env", default-features = false }
ink_env = { version = "=5.1.0", path = "../../crates/env", default-features = false, features = ["unstable"] }

#rustc_middle = {path = "/Users/michi/.rustup/toolchains/nightly-2024-09-05-aarch64-apple-darwin/lib/rustlib/rustc-src/rust/compiler/rustc_middle", optional = true}

Expand Down
6 changes: 3 additions & 3 deletions linting/mandatory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ dylint_testing = "3.3.0"
#
# These cannot be moved to the workspace level because `cargo` does not provide
# the `[[workspace.dev-dependencies]]` directive.
ink = { version = "=5.1.0", path = "../../crates/ink", default-features = false, features = ["std"] }
ink_env = { version = "=5.1.0", path = "../../crates/env", default-features = false }
ink = { version = "=5.1.0", path = "../../crates/ink", default-features = false, features = ["std", "unstable"] }
ink_env = { version = "=5.1.0", path = "../../crates/env", default-features = false, feautres = ["unstable"] }
ink_metadata = { version = "=5.1.0", path = "../../crates/metadata", default-features = false }
ink_primitives = { version = "=5.1.0", path = "../../crates/primitives", default-features = false }
ink_storage = { version = "=5.1.0", path = "../../crates/storage", default-features = false }
ink_storage = { version = "=5.1.0", path = "../../crates/storage", default-features = false, features = ["unstable"] }
scale = { package = "parity-scale-codec", version = "3.6.12", default-features = false, features = ["derive"] }
scale-info = { version = "2.6", default-features = false, features = ["derive"] }

Expand Down

0 comments on commit e54e96e

Please sign in to comment.