2025-08-06 13:39:09 -03:00
|
|
|
[package]
|
|
|
|
|
name = "nssa"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-12-16 17:44:10 +03:00
|
|
|
nssa_core = { workspace = true, features = ["host"] }
|
|
|
|
|
|
|
|
|
|
thiserror.workspace = true
|
|
|
|
|
risc0-zkvm.workspace = true
|
|
|
|
|
serde.workspace = true
|
|
|
|
|
sha2.workspace = true
|
|
|
|
|
rand.workspace = true
|
|
|
|
|
borsh.workspace = true
|
|
|
|
|
hex.workspace = true
|
2025-08-11 19:14:12 -03:00
|
|
|
secp256k1 = "0.31.1"
|
2025-10-15 17:25:26 -03:00
|
|
|
risc0-binfmt = "3.0.2"
|
2025-08-10 00:53:53 -03:00
|
|
|
|
2025-10-08 20:27:09 -03:00
|
|
|
[build-dependencies]
|
|
|
|
|
risc0-build = "3.0.3"
|
2025-10-09 21:27:43 -03:00
|
|
|
risc0-binfmt = "3.0.2"
|
2025-10-08 20:27:09 -03:00
|
|
|
|
2025-08-10 00:53:53 -03:00
|
|
|
[dev-dependencies]
|
2025-12-16 17:44:10 +03:00
|
|
|
test_program_methods.workspace = true
|
2025-08-25 07:44:56 -03:00
|
|
|
hex-literal = "1.0.0"
|
2025-09-04 17:05:12 -03:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = []
|