-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (28 loc) · 845 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
[package]
name = "xmodits"
authors = ["B0ney - https://github.com/B0ney"]
description = "XMODITS command line application"
version = "0.11.4"
edition = "2021"
license = "LGPLv3"
repository = "https://github.com/B0ney/xmodits-cli"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.xmodits-lib]
git = "https://github.com/B0ney/xmodits-lib.git"
rev = "6f4da08"
[dependencies]
clap = { version = "4", features = ["derive", "cargo", "wrap_help"] }
rayon = { version = "1", optional = true }
wild = "2"
[target.'cfg(windows)'.dependencies]
shellexpand = "3"
[features]
with_metadata = ["built"]
[build-dependencies]
built = { version = "0.7", features = ["chrono", "git2"], optional = true }
[profile.release]
strip = true
opt-level = "s"
codegen-units = 1
panic = "abort"
lto = true