Create new store and add storage API

This commit is contained in:
Julien Cretin
2020-09-24 10:06:03 +02:00
parent eba91e983d
commit a203ff13df
6 changed files with 166 additions and 0 deletions

View File

@@ -23,6 +23,9 @@ cd ../..
cd libraries/crypto
cargo fmt --all -- --check
cd ../..
cd libraries/persistent_store
cargo fmt --all -- --check
cd ../..
cd tools/heapviz
cargo fmt --all -- --check
cd ../..
@@ -84,6 +87,9 @@ then
cd libraries/crypto
RUSTFLAGS='-C target-feature=+aes' cargo test --release --features std,derive_debug
cd ../..
cd libraries/persistent_store
cargo test --release --features std
cd ../..
cargo test --release --features std
echo "Running unit tests on the desktop (debug mode)..."
@@ -93,6 +99,9 @@ then
cd libraries/crypto
RUSTFLAGS='-C target-feature=+aes' cargo test --features std,derive_debug
cd ../..
cd libraries/persistent_store
cargo test --features std
cd ../..
cargo test --features std
echo "Running unit tests on the desktop (release mode + CTAP1)..."