2025-08-06 20:05:04 -03:00
|
|
|
[package]
|
2025-12-16 17:44:10 +03:00
|
|
|
name = "nssa_core"
|
2025-08-06 20:05:04 -03:00
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-12-16 17:44:10 +03:00
|
|
|
risc0-zkvm.workspace = true
|
|
|
|
|
borsh.workspace = true
|
2025-12-26 23:01:40 +03:00
|
|
|
serde.workspace = true
|
2025-12-16 17:44:10 +03:00
|
|
|
thiserror.workspace = true
|
2025-12-23 17:31:03 -05:00
|
|
|
bytemuck.workspace = true
|
2025-12-16 17:44:10 +03:00
|
|
|
k256 = { workspace = true, optional = true }
|
|
|
|
|
base58 = { workspace = true, optional = true }
|
|
|
|
|
anyhow = { workspace = true, optional = true }
|
2025-08-18 14:28:26 -03:00
|
|
|
|
2025-12-26 23:01:40 +03:00
|
|
|
chacha20 = { version = "0.9", default-features = false }
|
|
|
|
|
|
2025-12-05 02:17:09 +03:00
|
|
|
[dev-dependencies]
|
2025-12-16 17:44:10 +03:00
|
|
|
serde_json.workspace = true
|
2025-12-05 02:17:09 +03:00
|
|
|
|
2025-08-18 14:28:26 -03:00
|
|
|
[features]
|
|
|
|
|
default = []
|
2025-12-15 10:40:46 +02:00
|
|
|
host = ["dep:k256", "dep:base58", "dep:anyhow"]
|