-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
69 lines (61 loc) · 1.3 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "hmmcli"
version = "0.6.0"
authors = ["Sam Rose <[email protected]>"]
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.2"
quick-csv = "0.1"
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
dirs = "5.0"
itertools = "0.10"
textwrap = { version = "0.16", features = ["terminal_size", "smawk"] }
colored = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3.1"
structopt = { version = "0.3", default-features = false }
fs2 = "0.4"
rand = "0.8"
handlebars = "4.3"
regex = "1.3"
lipsum = "0.9"
indicatif = "0.17"
lazy_static = "1"
shellwords = "1"
termimad = "0.23"
human-panic = "1"
[dev-dependencies]
test-case = "3.1"
assert_cmd = "2.0"
escargot = "0.5"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[[bin]]
name = "hmm"
path = "src/bin/hmm.rs"
[[bin]]
name = "hmmq"
path = "src/bin/hmmq.rs"
[[bin]]
name = "hmmdg"
path = "src/bin/hmmdg.rs"
[[bin]]
name = "hmmp"
path = "src/bin/hmmp.rs"