Skip to content
This repository was archived by the owner on Mar 14, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ libsecp256k1-core = { version = "0.3.0", path = "core", default-features = false
arrayref = "0.3"
rand = { version = "0.8", default-features = false }
digest = "0.9"
base64 = { version = "0.13", default-features = false }
base64 = { version = "0.13", optional = true, default-features = false }
hmac-drbg = { version = "0.3", optional = true }
sha2 = { version = "0.9", optional = true, default-features = false }
typenum = { version = "1.12", optional = true }
serde = { version = "1.0.104", features = ["derive"], default-features = false }
serde = { version = "1.0.104", optional = true, features = ["derive"], default-features = false }
lazy_static = { version = "1.4.0", optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion gen/ecmult/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ repository = "https://github.com/paritytech/libsecp256k1"
keywords = ["crypto", "ECDSA", "secp256k1", "bitcoin", "no_std"]

[dependencies]
libsecp256k1-core = { version = "0.3.0", path = "../../core" }
libsecp256k1-core = { version = "0.3.0", path = "../../core", default-features = false }
2 changes: 1 addition & 1 deletion gen/genmult/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ repository = "https://github.com/paritytech/libsecp256k1"
keywords = ["crypto", "ECDSA", "secp256k1", "bitcoin", "no_std"]

[dependencies]
libsecp256k1-core = { version = "0.3.0", path = "../../core" }
libsecp256k1-core = { version = "0.3.0", path = "../../core", default-features = false }