Skip to content

Commit d77f507

Browse files
authored
Merge pull request #123 from mikedotexe/manifest-patch-parity-secp256k1
Manifest patch: fix `parity-secp256k1` yank issue
2 parents 590a8f4 + 53cfdee commit d77f507

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

ft/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,8 @@ crate-type = ["cdylib", "rlib"]
1010
[dependencies]
1111
near-sdk = "4.0.0"
1212
near-contract-standards = "4.0.0"
13+
14+
# This can be removed when near-sdk is updated
15+
# Unfortuantely, this crate was yanked by the author and this is needed
16+
[patch.crates-io]
17+
parity-secp256k1 = { git = 'https://github.com/paritytech/rust-secp256k1.git' }

integration-tests/rs/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,8 @@ pkg-config = "0.3.1"
2121
[[example]]
2222
name = "integration-tests"
2323
path = "src/tests.rs"
24+
25+
# This can be removed when near-sdk is updated
26+
# Unfortuantely, this crate was yanked by the author and this is needed
27+
[patch.crates-io]
28+
parity-secp256k1 = { git = 'https://github.com/paritytech/rust-secp256k1.git' }

res/fungible_token.wasm

18.4 KB
Binary file not shown.

test-contract-defi/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@ crate-type = ["cdylib", "rlib"]
1111
near-sdk = "4.0.0"
1212
near-contract-standards = "4.0.0"
1313

14+
# This can be removed when near-sdk is updated
15+
# Unfortuantely, this crate was yanked by the author and this is needed
16+
[patch.crates-io]
17+
parity-secp256k1 = { git = 'https://github.com/paritytech/rust-secp256k1.git' }

0 commit comments

Comments
 (0)