-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (42 loc) · 866 Bytes
/
Cargo.toml
File metadata and controls
46 lines (42 loc) · 866 Bytes
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
[package]
name = "unmake"
description = "a makefile linter"
version = "0.0.27"
edition = "2024"
authors = ["Andrew Pennebaker <andrew.pennebaker@gmail.com>"]
license = "0BSD"
repository = "https://github.com/mcandre/unmake"
documentation = "https://docs.rs/unmake/latest/unmake/"
exclude = [
"*.mk",
".crit",
".editorconfig",
".github",
".rockhopper",
".rubberstamp",
".tool-versions",
"Cross.toml",
"crit.toml",
"fixtures",
"go.mod",
"go.sum",
"makefile",
"rockhopper.toml",
"upload",
"vendor",
]
[dependencies]
die = "0.2.0"
getopts = "0.2.24"
peg = "0.8.5"
regex = "1.12.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
walkdir = "2.5.0"
[lib]
name = "unmake"
[[bin]]
name = "unmake"
path = "src/bin/unmake.rs"
[profile.release]
strip = "symbols"