lssa/nssa/Cargo.toml

21 lines
405 B
TOML
Raw Normal View History

2025-08-06 13:39:09 -03:00
[package]
name = "nssa"
version = "0.1.0"
edition = "2024"
[dependencies]
2025-08-09 19:49:07 -03:00
thiserror = "2.0.12"
2025-08-08 10:51:23 -03:00
risc0-zkvm = "2.3.1"
2025-08-18 14:28:26 -03:00
nssa-core = { path = "core", features=["host"]}
2025-08-06 13:39:09 -03:00
program-methods = { path = "program_methods" }
2025-08-07 15:19:06 -03:00
serde = "1.0.219"
sha2 = "0.10.9"
2025-08-11 19:14:12 -03:00
secp256k1 = "0.31.1"
2025-08-12 16:45:07 -03:00
rand = "0.8"
2025-08-18 18:18:16 -03:00
borsh = "1.5.7"
2025-08-21 10:19:08 -03:00
bytemuck = "1.13"
2025-08-13 13:42:00 +03:00
hex = "0.4.3"
2025-08-10 00:53:53 -03:00
[dev-dependencies]
test-program-methods = { path = "test_program_methods" }