-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge aargvark and genemichaels repos, add genemichaels indent spaces…
… option
- Loading branch information
andrew
committed
Dec 1, 2024
1 parent
b04128a
commit 957658d
Showing
24 changed files
with
719 additions
and
394 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,30 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = ["crates/*"] | ||
|
||
[workspace.package] | ||
edition = "2021" | ||
license = "ISC" | ||
[package] | ||
name = "aargvark" | ||
description = "Self-similar argument parsing" | ||
homepage = "https://github.com/andrewbaxter/aargvark" | ||
version = "0.6.5" | ||
edition.workspace = true | ||
license.workspace = true | ||
repository = "https://github.com/andrewbaxter/aargvark" | ||
readme = "readme.md" | ||
readme = "../../readme_aargvark.md" | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
|
||
[features] | ||
default = [] | ||
serde_json = ["dep:serde_json", "dep:serde"] | ||
serde_yaml = ["dep:serde_yaml", "dep:serde"] | ||
http_types = ["dep:http"] | ||
|
||
[dependencies] | ||
aargvark_proc_macros = { path = "../aargvark_proc_macros", version = "=3.2.5" } | ||
serde_json = { version = "1", optional = true } | ||
serde_yaml = { version = "0", optional = true } | ||
convert_case = "0.6" | ||
comfy-table = { version = "7", features = ["custom_styling"] } | ||
url = { version = "2", optional = true } | ||
http = { version = "1", optional = true } | ||
serde = { version = "1", optional = true } | ||
console = "0.15" | ||
textwrap = { version = "0.16", features = ["terminal_size"] } | ||
unicode-width = "0.1" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../../readme.md |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
1 change: 1 addition & 0 deletions
1
...aargvark/crates/aargvark_tests/Cargo.toml → crates/aargvark_tests/Cargo.toml
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,6 +1,7 @@ | ||
[package] | ||
name = "aargvark_tests" | ||
publish = false | ||
edition.workspace = true | ||
|
||
[dependencies] | ||
aargvark = { path = "../aargvark" } |
File renamed without changes.
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
Oops, something went wrong.