-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (28 loc) · 940 Bytes
/
Cargo.toml
File metadata and controls
34 lines (28 loc) · 940 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
[workspace]
members = ["crates/*"]
# Opt-in to the latest feature resolver introduced in Rust 1.85 and Edition 2024
# https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions
resolver = "3"
[workspace.package]
version = "0.3.0"
edition = "2024"
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/jdno/labelflair.git"
# Rust edition 2024 requires a minimum Rust version of 1.84.0
rust-version = "1.85.0"
# The profile that 'cargo-dist' will use to build the CLI
[profile.dist]
inherits = "release"
lto = "thin"
[workspace.dependencies]
clawless = "0.4.0"
getset = "0.1.6"
indoc = "2.0.6"
labelflair = { path = "crates/labelflair", version = "0.3.0" }
serde = { version = "1.0.219", features = ["derive"] }
serde_yaml_ng = "0.10.0"
toml = { version = "0.9.5", features = ["serde"] }
trycmd = "0.15.10"
typed-builder = "0.23.0"
typed-fields = { version = "0.5.2", features = ["serde"] }