mirror of
https://github.com/logos-blockchain/lssa-zkvm-testing.git
synced 2026-01-07 15:53:12 +00:00
20 lines
393 B
TOML
20 lines
393 B
TOML
[package]
|
|
name = "chacha20"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
# Ensure staticlib for RISC-V
|
|
crate-type = ["staticlib"]
|
|
|
|
[dependencies]
|
|
# no_std stream cipher
|
|
chacha20 = { version = "0.9", default-features = false }
|
|
cipher = { version = "0.4", default-features = false }
|
|
|
|
risc0-zkvm-guest = "2.3.1"
|
|
|
|
[features]
|
|
default = ["alloc"] # pull in alloc inside guest
|
|
alloc = []
|
|
|