forked from dotenv-linter/dotenv-linter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
62 lines (50 loc) · 1.12 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
[package]
name = "dotenv-linter"
version = "3.2.0"
authors = ["Mikhail Grachev <[email protected]>"]
categories = ["command-line-utilities"]
edition = "2021"
homepage = "https://dotenv-linter.github.io"
include = ["/src", "/benches", "README.md"]
keywords = ["cli", "dotenv", "environment", "env", "linter"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/dotenv-linter/dotenv-linter"
description = "Lightning-fast linter for .env files"
[dependencies]
clap = "3.1.10"
colored = "2.0.0"
[dependencies.update-informer]
version = "0.5.0"
optional = true
[target.'cfg(windows)'.dependencies]
dunce = "1.0.2"
[dev-dependencies]
assert_cmd = "2.0.4"
criterion = "0.3.6"
tempfile = "3.3.0"
[target.'cfg(not(windows))'.dev-dependencies]
gag = "1.0.0"
[features]
default = ["update-informer"]
stub_check_version = []
[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