Skip to content

Commit a7fbe5e

Browse files
authored
Fix testing with crypto primitives. (#226)
1 parent a949ec2 commit a7fbe5e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

concordium-std/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased changes
44

5+
- Fix testing of crypto primitives using secp256k1 signature scheme.
6+
57
## concordium-std 6.0.0 (2023-02-08)
68

79
- [`wee_alloc`](https://docs.rs/wee_alloc/latest/wee_alloc/index.html) is no

concordium-std/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "concordium-std"
3-
version = "6.0.0"
3+
version = "6.0.1"
44
authors = ["Concordium <[email protected]>"]
55
edition = "2018"
66
license = "MPL-2.0"
@@ -15,7 +15,7 @@ readme = "./README.md"
1515
wee_alloc= { version = "0.4.5", optional = true}
1616
sha2 = { version = "0.10", optional = true }
1717
sha3 = { version = "0.10", optional = true }
18-
secp256k1 = { version = "0.22", optional = true }
18+
secp256k1 = { version = "0.22", optional = true, features = ["lowmemory"] }
1919
ed25519-zebra = { version = "2.2", optional = true }
2020
quickcheck = {version = "1", optional = true }
2121
getrandom = { version = "0.2", features = ["custom"], optional = true }

0 commit comments

Comments
 (0)