forked from numtide/treefmt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (51 loc) · 1.17 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
[package]
name = "treefmt"
version = "0.4.1"
edition = "2018"
description = "one CLI to format the code tree"
license = "MIT"
authors = [
"Andika Demas Riyandi <[email protected]>",
"Basile Henry <[email protected]>",
"Jonas Chevalier <[email protected]>",
]
homepage = "https://numtide.github.io/treefmt"
documentation = "https://numtide.github.io/treefmt"
repository = "https://github.com/numtide/treefmt"
readme = "README.md"
keywords = ["formatting"]
categories = ["command-line-utilities", "development-tools"]
include = [
"/Cross.toml",
"/LICENSE.md",
"/README.md",
"/benches/**/*",
"/src/**/*",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
[dependencies]
anyhow = "1.0"
console = "0.13"
directories = "3.0.1"
filetime = "0.2"
globset = "0.4.6"
ignore = "0.4.17"
log = "0.4"
path-clean = "0.1.0"
rayon = "1.5.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha-1 = "0.9.2"
structopt = "0.3"
tempfile = "3.2.0"
toml = "0.5"
which = "4.0.2"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "bench"
harness = false