-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
44 lines (35 loc) · 923 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
[package]
name = "unused"
version = "0.4.0"
authors = ["Joshua Clayton <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1.0.50"
read_ctags = { path = "crates/read_ctags/" }
token_search = { path = "crates/token_search/" }
codebase_files = { path = "crates/codebase_files/" }
cli = { path = "crates/cli/" }
mimalloc = { version = "*", default-features = false, optional = true }
[dev-dependencies]
assert_cmd = "2.0"
assert_fs = "1.0"
predicates = "2.1"
[[bin]]
name = "read-ctags"
path = "src/bin/read_ctags.rs"
[[bin]]
name = "token-search"
path = "src/bin/token_search.rs"
[[bin]]
name = "tracked-files"
path = "src/bin/codebase_files.rs"
[[bin]]
name = "unused"
path = "src/bin/unused.rs"
[workspace]
members = ["crates/*"]
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"