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