-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from upupnoah/main
feat(darling): support darling to process input
- Loading branch information
Showing
5 changed files
with
366 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 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,37 @@ | ||
# Run rust examples | ||
.PHONY: enum_marco enum_macro_darling | ||
|
||
# clap: | ||
# cargo run --example clap -- $(ARGS) # USAGE: make clap ARGS="--help" | ||
|
||
# subcommand: | ||
# cargo run --example subcommand -- $(ARGS) | ||
|
||
# mode: | ||
# cargo run --example mode -- $(ARGS) | ||
|
||
# validated_values: | ||
# cargo run --example validated_values -- $(ARGS) | ||
|
||
# text-cli: | ||
# cargo run --example text_cli -- $(ARGS) | ||
# async: | ||
# cargo run --example async | ||
# async2: | ||
# cargo run --example async2 | ||
# axum: | ||
# cargo run --example axum | ||
# thread: | ||
# cargo run --example thread | ||
|
||
# run: | ||
# @cargo run -- $(ARGS) | ||
|
||
# run_with_log: | ||
# @RUST_LOG=info cargo run -- $(ARGS) | ||
|
||
enum_macro: | ||
@RUST_LOG=info cargo run --example enum_macro | ||
|
||
enum_macro_darling: | ||
@RUST_LOG=info cargo run --example enum_macro_darling |
Oops, something went wrong.