[package] name = "nod" version = "0.1.0" edition = "2024" [lib] name = "nod" path = "src/lib.rs" [[bin]] name = "nod" path = "src/main.rs" [dependencies] rusqlite = { version = "0.31", features = ["bundled"] } chrono = "0.4" clap = { version = "4", features = ["derive", "env"] } anyhow = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" libc = "0.2" [lints.clippy] allow_attributes = "deny" allow_attributes_without_reason = "deny" pedantic = { level = "deny", priority = -1 } [dev-dependencies] proptest = "1" tempfile = "3" chrono = "0.4"