We don't need to build a production key without persistent storage. Tests and fuzzing continue to use the std feature to use the RAM implementation (that does sanity checks).
15 lines
486 B
TOML
15 lines
486 B
TOML
[package]
|
|
name = "fuzz_helper"
|
|
version = "0.1.0"
|
|
authors = ["Mingxiao Guo <mingxguo@google.com>"]
|
|
license = "Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
arrayref = "0.3.6"
|
|
libtock_drivers = { path = "../../third_party/libtock-drivers" }
|
|
crypto = { path = "../../libraries/crypto", features = ['std'] }
|
|
cbor = { path = "../../libraries/cbor", features = ['std'] }
|
|
ctap2 = { path = "../..", features = ['std'] }
|
|
lang_items = { path = "../../third_party/lang-items", features = ['std'] }
|