-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
49 lines (44 loc) · 963 Bytes
/
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
[package]
name = "todo_r"
description = "Simple rust command line utility that keeps track of your todo comments in code"
version = "0.7.3"
authors = ["Lavi Blumberg <[email protected]>"]
homepage = "https://github.com/lavifb/todo_r"
repository = "https://github.com/lavifb/todo_r"
license = "MIT"
edition = "2021"
readme = "README.md"
exclude = [
"benches/*",
"tests/*",
"ci/*",
"HomebrewFormula/*",
".travis.yml",
]
[dependencies]
log = { version = "0.4", features = ["max_level_trace", "release_max_level_info"] }
env_logger = "0.9"
clap = "2.32"
ignore = "0.4"
dialoguer = "0.9"
fnv = "1"
regex = "1"
ansi_term = "0.12"
failure = "0.1"
lazy_static = "1"
config = "0.11"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
globset = "0.4"
dirs = "4"
atty = "0.2"
[dev-dependencies]
criterion = "0.3"
assert_cmd = "2"
[build-dependencies]
clap = "2.32"
[[bench]]
name = "bench"
harness = false
[profile.release]
lto = true