-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f02f6b4
commit 38cea9a
Showing
4 changed files
with
26 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
[workspace.package] | ||
version = "0.1.13" | ||
authors = ["Taylor Cramer <[email protected]>", "Benjamin Brittain <[email protected]>", "Erick Tryzelaar <[email protected]>"] | ||
edition = "2018" | ||
license = "BSD-3-Clause" | ||
description = "Derive-based argument parsing optimized for code size" | ||
repository = "https://github.com/google/argh" | ||
|
||
[workspace] | ||
members = [ | ||
"argh", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "argh" | ||
version = "0.1.12" | ||
authors = ["Taylor Cramer <[email protected]>", "Benjamin Brittain <[email protected]>", "Erick Tryzelaar <[email protected]>"] | ||
edition = "2018" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
description.workspace = true | ||
repository.workspace = true | ||
categories = ["command-line-interface"] | ||
keywords = ["args", "arguments", "derive", "cli"] | ||
license = "BSD-3-Clause" | ||
description = "Derive-based argument parser optimized for code size" | ||
repository = "https://github.com/google/argh" | ||
readme = "README.md" | ||
|
||
[dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "argh_derive" | ||
version = "0.1.12" | ||
authors = ["Taylor Cramer <[email protected]>", "Benjamin Brittain <[email protected]>", "Erick Tryzelaar <[email protected]>"] | ||
edition = "2018" | ||
license = "BSD-3-Clause" | ||
description = "Derive-based argument parsing optimized for code size" | ||
repository = "https://github.com/google/argh" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
description.workspace = true | ||
repository.workspace = true | ||
readme = "README.md" | ||
|
||
[lib] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "argh_shared" | ||
version = "0.1.12" | ||
authors = ["Taylor Cramer <[email protected]>", "Benjamin Brittain <[email protected]>", "Erick Tryzelaar <[email protected]>"] | ||
edition = "2018" | ||
license = "BSD-3-Clause" | ||
description = "Derive-based argument parsing optimized for code size" | ||
repository = "https://github.com/google/argh" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
description.workspace = true | ||
repository.workspace = true | ||
readme = "README.md" | ||
|
||
[dependencies] | ||
|