16 lines
366 B
TOML
16 lines
366 B
TOML
[package]
|
|
name = "libcrypto"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
chacha20poly1305 = "0.10"
|
|
rand = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
# Add this dependency for the From<CryptoError> for DBError
|
|
libdbstorage = { path = "../libdbstorage", optional = true }
|
|
|
|
[features]
|
|
storage_compat = ["dep:libdbstorage"] |