| [package] | |
| name = "snapkitty-gitbucket" | |
| version = "0.1.0" | |
| edition = "2021" | |
| description = "Deterministic Memory Layer — Git as WORM, JSON as Query, Prolog as Truth" | |
| license = "MIT OR Apache-2.0" | |
| authors = ["SnapKitty Collective"] | |
| repository = "https://github.com/SNAPKITTYWEST/snapkitty-gitbucket" | |
| [[bin]] | |
| name = "gitbucket" | |
| path = "src/main.rs" | |
| [dependencies] | |
| serde = { version = "1", features = ["derive"] } | |
| serde_json = "1" | |
| sha2 = "0.10" | |
| hex = "0.4" | |
| ed25519-dalek = { version = "2", features = ["rand_core"] } | |
| rand = "0.8" | |
| clap = { version = "4", features = ["derive"] } | |
| uuid = { version = "1", features = ["v4"] } | |
| chrono = { version = "0.4", features = ["serde"] } | |
| thiserror = "2" | |
| anyhow = "1" | |
| walkdir = "2" | |
| [dev-dependencies] | |
| tempfile = "3" | |
| proptest = "1" | |
| [lints.clippy] | |
| unwrap_used = "deny" | |
| panic = "deny" | |