forked from dotenv-linter/dotenv-linter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (42 loc) · 932 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
50
51
52
[package]
name = "dotenv-linter"
version = "3.1.0"
authors = ["Mikhail Grachev <work@mgrachev.com>"]
edition = "2018"
description = "Lightning-fast linter for .env files"
homepage = "https://github.com/dotenv-linter/dotenv-linter"
license = "MIT"
readme = "README.md"
keywords = ["environment", "env", "dotenv", "linter", "lint"]
categories = ["command-line-utilities"]
[dependencies]
clap = "2.33.3"
colored = "2.0.0"
[target.'cfg(windows)'.dependencies]
dunce = "1.0.1"
[dev-dependencies]
assert_cmd = "0.12.0"
criterion = "0.3.4"
tempfile = "3.1.0"
[target.'cfg(not(windows))'.dev-dependencies]
gag = "0.1.10"
[profile.release]
opt-level = 'z' # Optimize for size
lto = true
codegen-units = 1
panic = 'abort'
[[bench]]
name = "check"
harness = false
[[bench]]
name = "fix"
harness = false
[[bench]]
name = "compare"
harness = false
[lib]
bench = false
[[bin]]
name = "dotenv-linter"
path = "src/main.rs"
bench = false