Skip to content

Commit

Permalink
chore: move secp256k1 to workspace dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ngutech21 committed Apr 11, 2024
1 parent 9c6d62f commit d3de7f0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ url = "2.5.0"
utoipa = "4.2.0"
utoipa-swagger-ui = "6.0.0"
uuid = "1.7.0"
secp256k1 = "0.29.0"

[profile.dev.package]
secp256k1 = { opt-level = 3 }
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 = { version = "0.29.0", features = ["rand", "serde"] }
secp256k1 = { workspace = 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 = { version = "0.28.2", default-features = false, features = ["rand", "serde"] }
secp256k1 = { workspace = true, default-features = false, features = ["rand", "serde"] }
thiserror = { workspace = true }
moksha-core = { path = "../moksha-core", version = "0.2.1" }
lightning-invoice = "0.30.0"
Expand Down

0 comments on commit d3de7f0

Please sign in to comment.