30 lines
904 B
TOML
30 lines
904 B
TOML
[package]
|
|
name = "nym-credential-storage"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
|
|
log = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["sync"]}
|
|
zeroize = { workspace = true, features = ["zeroize_derive"] }
|
|
|
|
|
|
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.sqlx]
|
|
workspace = true
|
|
features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"]
|
|
|
|
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.tokio]
|
|
workspace = true
|
|
features = [ "rt-multi-thread", "net", "signal", "fs" ]
|
|
|
|
|
|
[build-dependencies]
|
|
sqlx = { workspace = true, features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"] }
|
|
tokio = { version = "1.24.1", features = ["rt-multi-thread", "macros"] }
|