2025-02-05 12:24:09 +02:00
|
|
|
[package]
|
|
|
|
|
name = "common"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
anyhow.workspace = true
|
|
|
|
|
thiserror.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
|
serde.workspace = true
|
|
|
|
|
reqwest.workspace = true
|
2025-07-14 09:37:00 -03:00
|
|
|
k256.workspace = true
|
2025-08-05 14:59:20 +03:00
|
|
|
rand.workspace = true
|
2025-02-05 12:24:09 +02:00
|
|
|
|
2025-04-16 16:17:53 +03:00
|
|
|
rs_merkle.workspace = true
|
|
|
|
|
sha2.workspace = true
|
|
|
|
|
log.workspace = true
|
|
|
|
|
elliptic-curve.workspace = true
|
|
|
|
|
hex.workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies.secp256k1-zkp]
|
|
|
|
|
workspace = true
|
|
|
|
|
features = ["std", "rand-std", "rand", "serde", "global-context"]
|
2025-08-07 15:19:06 -03:00
|
|
|
|
|
|
|
|
[dependencies.nssa]
|
|
|
|
|
path = "../nssa"
|