mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-02 13:23:10 +00:00
23 lines
553 B
TOML
23 lines
553 B
TOML
[package]
|
|
name = "nssa_core"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
risc0-zkvm.workspace = true
|
|
borsh.workspace = true
|
|
serde = { workspace = true }
|
|
thiserror.workspace = true
|
|
chacha20 = { version = "0.9", default-features = false }
|
|
bytemuck = { workspace = true, optional = true }
|
|
k256 = { workspace = true, optional = true }
|
|
base58 = { workspace = true, optional = true }
|
|
anyhow = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde_json.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
host = ["dep:k256", "dep:base58", "dep:anyhow"]
|