[package] name = "aptos-secure-storage" version = "0.2.7" authors = ["Aptos Labs "] repository = "https://github.com/aptos-labs/aptos-core" description = "Aptos's Persistent, Secure Storage" homepage = "https://aptoslabs.com" license = "Apache-2.0" edition = "2018" [dependencies] base64 = "0.13.0" bcs = "0.1.3" chrono = "0.4.19" enum_dispatch = "0.3.8" rand = "0.7.3" serde = { version = "1.0.137", features = ["rc"], default-features = false } serde_json = "1.0.81" thiserror = "1.0.31" aptos-crypto = { version = "0.2.1", path = "../../crates/aptos-crypto" } aptos-github-client = { version = "0.2.1", path = "github" } aptos-infallible = { version = "0.2.1", path = "../../crates/aptos-infallible" } aptos-logger = { version = "0.2.1", path = "../../crates/aptos-logger" } aptos-temppath = { version = "0.2.1", path = "../../crates/aptos-temppath" } aptos-time-service = { version = "0.2.1", path = "../../crates/aptos-time-service" } aptos-vault-client = { version = "0.2.1", path = "vault" } [dev-dependencies] rand = "0.7.3" aptos-crypto = { version = "0.2.1", path = "../../crates/aptos-crypto", features = [ "fuzzing" ] } aptos-crypto-derive = { version = "0.2.1", path = "../../crates/aptos-crypto-derive" } [features] fuzzing = ["aptos-crypto/fuzzing"] testing = []