-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
40 lines (36 loc) · 1.03 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
package.name = "shadowplay"
package.version = "0.16.3"
package.edition = "2021"
package.authors = ["Evgenii Lepikhin <[email protected]>", "VK Company / mail.ru"]
package.readme = "README.md"
package.license = "MIT/Apache-2.0"
package.repository = "https://github.com/mailru/shadowplay/"
package.description = "Utility for checking puppet syntax, a puppet manifest linter, a pretty printer, and a utility for exploring the Hiera."
package.include = [
"**/*.rs",
"Cargo.toml",
"README.md",
]
[profile.release]
# https://github.com/johnthagen/min-sized-rust
lto = true
[[bin]]
name = "shadowplay"
path = "src/shadowplay/main.rs"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
regex = "1.5"
serde_regex = "1.1"
serde_yaml = "0.8"
serde_json = "1"
nom = "7"
nom_locate = "4"
pretty = {version = "0.11", features = [ "termcolor" ] }
yaml-rust = "0.4"
located_yaml = "0.2.1"
linked-hash-map = {version = "0.5", features = ["serde_impl"] }
anyhow = "1"
lazy_static = "1"
log = "0.4"
env_logger = "0.9"
structopt = "0.3"