Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
283 changes: 283 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

115 changes: 58 additions & 57 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,19 @@ license = "MIT"
[workspace.dependencies]
clap_usage = { path = "./clap_usage", version = "5.0.0" }
usage-cli = { path = "./cli" }
usage-argv = { path = "./argv", version = "5.1.0" }
usage-config = { path = "./config", version = "5.1.0" }
usage-derive = { path = "./derive", version = "5.1.0" }
usage-argv = { path = "./argv", version = "6.0.0" }
usage-config = { path = "./config", version = "6.0.0" }
usage-derive = { path = "./derive", version = "6.0.0" }
# No features, and defaults off. A feature named here is inherited by every member that writes
# `workspace = true` and inlines into their published manifests β€” so `clap` and `validation`
# reached members that use neither, one of them an adopter's build script. Defaults
# are off rather than absent because cargo *ignores* a member's `default-features = false` unless
# the workspace declaration sets it too, and warns that it may become a hard error. Members name
# what they need, `docs` included.
usage-lib = { path = "./lib", version = "5.1.0", default-features = false }
usage-rs = { path = "./usage-rs", version = "5.1.0" }
usage-test = { path = "./test", version = "5.1.0" }
usage-validation = { path = "./validation", version = "5.1.0" }
usage-lib = { path = "./lib", version = "6.0.0", default-features = false }
usage-rs = { path = "./usage-rs", version = "6.0.0" }
usage-test = { path = "./test", version = "6.0.0" }
usage-validation = { path = "./validation", version = "6.0.0" }

[workspace.metadata.release]
allow-branch = ["main"]
2 changes: 1 addition & 1 deletion argv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "usage-argv"
description = "Zero-allocation argv parser for usage specs"
version = "5.1.0"
version = "6.0.0"
edition = "2021"
rust-version = "1.91"
homepage = { workspace = true }
Expand Down
Loading