57 lines
1.1 KiB
TOML
57 lines
1.1 KiB
TOML
[workspace]
|
|
members = ["macro"]
|
|
|
|
[workspace.package]
|
|
description = "Dynamically build Command objects with conditional expressions"
|
|
repository = "https://gitlab.com/wunker-bunker/comlexr"
|
|
version = "1.4.1"
|
|
edition = "2021"
|
|
rust-version = "1.60"
|
|
license = "MIT"
|
|
|
|
[workspace.dependencies]
|
|
tempfile = "3.6"
|
|
|
|
[workspace.lints.rust]
|
|
unsafe_code = "forbid"
|
|
|
|
[workspace.lints.clippy]
|
|
correctness = "deny"
|
|
suspicious = "deny"
|
|
perf = "deny"
|
|
style = "deny"
|
|
nursery = "deny"
|
|
pedantic = "deny"
|
|
|
|
[package]
|
|
name = "comlexr"
|
|
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
description.workspace = true
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
|
|
[package.metadata.release]
|
|
pre-release-hook = ["git", "cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}"]
|
|
pre-release-replacements = [
|
|
{ file = "README.md", search = "comlexr = \"\\d+.\\d+.\\d+\"", replace = "comlexr = \"{{version}}\"" }
|
|
]
|
|
|
|
[package.metadata."docs.rs"]
|
|
all-features = true
|
|
|
|
[dependencies]
|
|
comlexr_macro = { version = "=1.4.1", path = "./macro" }
|
|
thiserror = "1.0.65"
|
|
|
|
[dev-dependencies]
|
|
rstest = "0.24"
|
|
rusty-hook = "0.11"
|
|
|
|
tempfile.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|