Skip to content

Commit

Permalink
fix: set default-features false for secp in workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
ngutech21 committed Jul 15, 2024
1 parent 01208ce commit 8751686
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ url = "2.5.0"
utoipa = "4.2.3"
utoipa-swagger-ui = "6.0.0"
uuid = "1"
secp256k1 = "0.29.0"
secp256k1 = { version = "0.29.0", default-features = false }

[profile.dev.package]
secp256k1 = { opt-level = 3 }
Expand Down
2 changes: 1 addition & 1 deletion integrationtests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ anyhow = { workspace = true, features = ["backtrace"] }
serde = { workspace = true, features = ["derive"] }
lightning-invoice = "0.31.0"
bitcoin = { version = "0.30.2", default-features = false }
secp256k1 = { version = "0.27.0", default-features = false, features = ["recovery", "alloc", "rand"] }
secp256k1 = { version = "0.27.0", features = ["recovery", "alloc", "rand"] }
testcontainers = { workspace = true }
testcontainers-modules = { workspace = true, features = ["postgres"] }
bitcoincore-rpc = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion moksha-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ anyhow = { workspace = true }
url = { workspace = true }
base64 = { workspace = true }
bitcoin_hashes = "0.14.0"
secp256k1 = { workspace = true, features = ["rand", "serde"] }
secp256k1 = { workspace = true, default-features = true, features = ["rand", "serde"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
hex = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion moksha-mint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tower-http = { workspace = true, features = ["cors", "fs", "set-header"] }
secp256k1 = { workspace = true, default-features = false, features = ["rand", "serde"] }
secp256k1 = { workspace = true, features = ["rand", "serde"] }
thiserror = { workspace = true }
moksha-core = { path = "../moksha-core", version = "0.2.1" }
lightning-invoice = "0.31.0"
Expand Down

0 comments on commit 8751686

Please sign in to comment.