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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
matrix:
include:
- version: "1.91"
crates: usage-argv usage-derive usage-config
crates: usage-argv usage-derive usage-config usage-rs
- version: "1.95"
crates: usage-lib usage-config-build clap_usage usage-cli
steps:
Expand Down
44 changes: 43 additions & 1 deletion Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ members = [
"config",
"config-build",
"derive",
"usage-rs",
"clap_usage",
"cli",
"conformance",
Expand Down Expand Up @@ -33,6 +34,7 @@ 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-lib = { path = "./lib", version = "5.1.0", features = ["clap"] }
usage-rs = { path = "./usage-rs", version = "5.1.0" }

[workspace.metadata.release]
allow-branch = ["main"]
1 change: 1 addition & 0 deletions derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ release = true

[dependencies]
proc-macro2 = "1"
proc-macro-crate = "3"
quote = "1"
# syn 2 rather than 3, which is already in the tree via clap_derive: nothing here
# needs the newer API, and matching what is there avoids a second copy.
Expand Down
Loading
Loading