15 lines
465 B
TOML
15 lines
465 B
TOML
[package]
|
|
name = "keepass-kdbx"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Pure Rust library for parsing and writing KeePass KDBX 4.x files"
|
|
repository = "https://git.candifloss.cc/candifloss/keepass-kdbx"
|
|
license = "GPL-3 or Later"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
quick-xml = "0.38.3"
|
|
thiserror = "2.0.17"
|
|
uuid = { version = "1.18.1", features = ["serde", "v4"] }
|
|
chrono = { version = "0.4.42", features = ["serde"] }
|