-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 714 Bytes
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 714 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
[package]
name = "rockhopper"
description = "metapackage generator"
version = "0.0.25"
edition = "2024"
authors = ["Andrew Pennebaker <n4jm4@pm.me>"]
license = "0BSD"
repository = "https://github.com/mcandre/rockhopper"
exclude = [
"*.hcl",
"*.mk",
".editorconfig",
".github",
".rubberstamp",
".tool-versions",
"docker",
"go.mod",
"go.sum",
"examples",
"makefile",
"vendor",
]
[dependencies]
die = "0.2.0"
getopts = "0.2.24"
glob = "0.3.3"
regex = "1.12.3"
serde = { version = "1.0.228", features = ["derive"] }
toml = "0.9.8"
walkdir = "2.5.0"
[lib]
name = "rockhopper"
[[bin]]
name = "rockhopper"
path = "src/rockhopper.rs"
[profile.release]
strip = "symbols"