[package]
edition = "2021"
name = "trove-core"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "kdbx-compatible vault library: I/O, crypto, sidecars"
readme = "README.md"
keywords = [
"keepass",
"kdbx",
"password",
"vault",
"crypto",
]
categories = [
"cryptography",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/antimatter-studios/trove"
[lib]
name = "trove_core"
path = "src/lib.rs"
[[test]]
name = "binary_attachments"
path = "tests/binary_attachments.rs"
[[test]]
name = "vault_roundtrip"
path = "tests/vault_roundtrip.rs"
[dependencies.keepass]
version = "0.13"
features = ["save_kdbx4"]
[dependencies.thiserror]
version = "1"
[dependencies.zeroize]
version = "1"
features = ["zeroize_derive"]
[dev-dependencies.keepass]
version = "0.13"
features = ["save_kdbx4"]
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"