-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 875 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 875 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
[package]
name = "pareg"
version = "0.12.0"
edition = "2024"
license-file = "LICENSE"
description = "Rust library with useful tools for command line argument parsing"
homepage = "https://github.com/BonnyAD9/pareg"
repository = "https://github.com/BonnyAD9/pareg"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"pareg_core",
"pareg_proc",
]
[dependencies.pareg_core]
version = "0.12.0"
path = "pareg_core"
default-features = false
[dependencies.pareg_proc]
version = "0.12.0"
path = "pareg_proc"
[features]
default = ["color-auto-stderr"]
color-auto-stderr = ["pareg_core/color-auto-stderr"]
color-auto-stdout = ["pareg_core/color-auto-stdout"]
color-never = ["pareg_core/color-never"]
color-always = ["pareg_core/color-always"]
no-anounce = ["pareg_core/no-anounce"]