[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"] } async-std = { version = "1", features = ["attributes"] } serde = { version = "1", features = ["derive"] } serde_json = "1" [dev-dependencies] tempfile = "3" [profile.release] opt-level = "z" lto = true strip = true codegen-units = 1