[package] name = "wiki-o" version = "0.1.0" license = "GPL-3.0-only" description = "Smart note taking cli app" homepage = "https://github.com/doriancodes/wiki-o" repository = "https://github.com/doriancodes/wiki-o" keywords = ["cli", "clipboard", "notes", "wiki"] categories = ["command-line-utilities"] readme = "README.md" authors = ["Dorian Davì"] edition = "2021" [[bin]] name = "wo" path = "src/main.rs" [lib] name = "wiki_o" path = "src/lib.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.81" clap = { version = "4.5.3", features = ["derive"] } colored = "2.1.0" home = "0.5.9" serde = "1.0.197" serde_derive = "1.0.197" [dev-dependencies] assert_cmd = "2.0.14" predicates = "3.1.0" [profile.dev] opt-level = 1 [profile.release] opt-level = 3 debug = false debug-assertions = false