Skip to content

Commit b6880dd

Browse files
authored
🦖 pin curve25519-dalek to 4.1.1 to fix linting CI (#2103)
* 🦖 pin `curve25519-dalek` to `4.1.1` to fix linting * Add to mandatory lints
1 parent 22b686f commit b6880dd

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

linting/Cargo.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@ keywords = ["parity", "blockchain", "edsl", "dylint", "linting"]
1717

1818
[workspace.dependencies]
1919
ink_linting_utils = { version = "=5.0.0-rc", path = "utils" }
20-
20+
curve25519-dalek = { version = "=4.1.1", default-features = false, features = [
21+
"digest",
22+
"zeroize",
23+
"precomputed-tables",
24+
"legacy_compatibility",
25+
] }
2126
[workspace.metadata.dylint]
2227
libraries = [
2328
{ path = "mandatory" },

linting/mandatory/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ if_chain = "1.0.2"
2222
log = "0.4.14"
2323
regex = "1.5.4"
2424
ink_linting_utils = { workspace = true }
25+
curve25519-dalek = { workspace = true }
2526

2627
[dev-dependencies]
2728
dylint_testing = "2.6.0"

0 commit comments

Comments
 (0)