[package]
name = "hmmcli"
version = "0.1.2"
authors = ["Sam Rose <hello@samwho.dev>"]
edition = "2018"
license = "MIT"
keywords = ["notes", "cli"]
categories = ["command-line-utilities"]
readme = "README.md"
repository = "https://github.com/samwho/hmm"
description = "A small command-line note-taking app"
include = [
"Cargo.toml",
"LICENSE",
"README.md",
"**/*.rs",
]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
csv = "1.1"
chrono = "0.4.11"
dirs = "2.0.2"
itertools = "0.9.0"
textwrap = { version = "0.11", features = ["term_size"] }
colored = "1.9"
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0"
tempfile = "3.1.0"
easy_reader = "0.5.0"
structopt = { version = "0.3", default-features = false }
fs2 = "0.4.3"
toml = "0.5"
rand = "0.7.3"
handlebars = "3.0.1"
[dev-dependencies]
test-case = "1.0.0"
assert_cmd = "0.12"
rusty-hook = "0.10.1"
escargot = "0.5"
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
[[bin]]
name = "hmm"
path = "src/bin/hmm.rs"
[[bin]]
name = "hmmq"
path = "src/bin/hmmq.rs"