Init crate
- Initial commit - Initialize crate
This commit is contained in:
parent
98acb8f9c6
commit
5572bbb2bf
6
.gitignore
vendored
6
.gitignore
vendored
@ -20,3 +20,9 @@ Cargo.lock
|
|||||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||||
#.idea/
|
#.idea/
|
||||||
|
|
||||||
|
|
||||||
|
# Added by cargo
|
||||||
|
|
||||||
|
/target
|
||||||
|
/test
|
||||||
|
|||||||
14
Cargo.toml
Normal file
14
Cargo.toml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
[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"] }
|
||||||
1
src/common/mod.rs
Normal file
1
src/common/mod.rs
Normal file
@ -0,0 +1 @@
|
|||||||
|
pub mod types;
|
||||||
0
src/common/types.rs
Normal file
0
src/common/types.rs
Normal file
0
src/entry/autotype.rs
Normal file
0
src/entry/autotype.rs
Normal file
0
src/entry/entry.rs
Normal file
0
src/entry/entry.rs
Normal file
0
src/entry/history.rs
Normal file
0
src/entry/history.rs
Normal file
5
src/entry/mod.rs
Normal file
5
src/entry/mod.rs
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
pub mod entry;
|
||||||
|
pub mod autotype;
|
||||||
|
pub mod history;
|
||||||
|
|
||||||
|
pub use entry::Entry;
|
||||||
4
src/lib.rs
Normal file
4
src/lib.rs
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
pub mod common;
|
||||||
|
pub mod entry;
|
||||||
|
|
||||||
|
pub use entry::Entry;
|
||||||
Loading…
x
Reference in New Issue
Block a user