[package] name = "nbd" version = "0.1.0" edition = "2021" description = "CLI tool for managing work tickets, targeted at agent workflows" license = "MIT OR Apache-2.0" [[bin]] name = "nbd" path = "src/main.rs" [dependencies] clap = { version = "4", features = ["derive"] } tokio = { version = "1", features = ["full"] } libsql = "0.6" serde = { version = "1", features = ["derive"] } serde_json = "1" toml = "0.8" ciborium = "0.2" [dev-dependencies] tempfile = "3" [profile.release] opt-level = "z" lto = true strip = true codegen-units = 1