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"
|
2026-01-31 23:13:36 +04:00
|
|
|
license = { workspace = true }
|
2025-08-06 20:05:04 -03:00
|
|
|
|
|
|
|
|
[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
|
2026-01-29 22:20:42 +03:00
|
|
|
serde_with.workspace = true
|
2025-12-16 17:44:10 +03:00
|
|
|
thiserror.workspace = true
|
2025-12-23 17:31:03 -05:00
|
|
|
bytemuck.workspace = true
|
2026-01-29 22:20:42 +03:00
|
|
|
base58.workspace = true
|
2025-12-16 17:44:10 +03:00
|
|
|
k256 = { workspace = true, optional = true }
|
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 = []
|
2026-02-11 22:00:29 +03:00
|
|
|
host = ["dep:k256"]
|