[package]
edition = "2021"
name = "trove-core"
version = "0.6.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"
[features]
yubikey = ["keepass/challenge_response"]
[lib]
name = "trove_core"
path = "src/lib.rs"
[[test]]
name = "binary_attachments"
path = "tests/binary_attachments.rs"
[[test]]
name = "challenge_response"
path = "tests/challenge_response.rs"
[[test]]
name = "crud_groups"
path = "tests/crud_groups.rs"
[[test]]
name = "keyfile_unlock"
path = "tests/keyfile_unlock.rs"
[[test]]
name = "secret_refs"
path = "tests/secret_refs.rs"
[[test]]
name = "totp"
path = "tests/totp.rs"
[[test]]
name = "vault_ops"
path = "tests/vault_ops.rs"
[[test]]
name = "vault_roundtrip"
path = "tests/vault_roundtrip.rs"
[dependencies.keepass]
version = "0.13"
features = [
"save_kdbx4",
"totp",
"_merge",
]
[dependencies.thiserror]
version = "1"
[dependencies.zeroize]
version = "1"
features = ["zeroize_derive"]
[dev-dependencies.keepass]
version = "0.13"
features = [
"save_kdbx4",
"totp",
]
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"