-
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.
First commit. Just a basic setup for parsing command line arguments
- Loading branch information
0 parents
commit 06319f7
Showing
13 changed files
with
2,388 additions
and
0 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
license.html -linguist-detectable |
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 @@ | ||
target/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[package] | ||
name = "cmbr" | ||
version = "0.0.0" | ||
edition = "2021" | ||
license = "GPL-3.0" | ||
|
||
[dependencies] | ||
clap = { version = "4.5.7", features = ["derive"] } | ||
clap_complete = "4.5.5" | ||
exec = "0.3.1" |
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,4 @@ | ||
libcmbr, cmbrcc Copyright (C) 2024 datawater | ||
This program comes with ABSOLUTELY NO WARRANTY; | ||
This is free software, and you are welcome to redistribute it | ||
under the conditions of the GPL-3.0 License; |
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,12 @@ | ||
push: commit | ||
git push origin main | ||
|
||
commit: pre-commit | ||
git add . | ||
git commit | ||
|
||
pre-commit: | ||
cargo fmt | ||
cargo test | ||
cargo deny check | ||
cargo about generate about.hbs > license.html |
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,32 @@ | ||
# CMBR | ||
CMBR - Chess Move Binary Representation (WIP) | ||
|
||
### Building | ||
For release builds | ||
|
||
```bash | ||
cargo build --release | ||
``` | ||
|
||
For development builds | ||
```bash | ||
cargo build | ||
``` | ||
|
||
### Usage | ||
For usage run | ||
```bash | ||
cmbrcc help | ||
``` | ||
|
||
or | ||
|
||
```bash | ||
cargo run -- help | ||
``` | ||
|
||
### License | ||
The software is distributed under the GPL-3.0 License | ||
|
||
### Authors | ||
- [datawater](https://github.com/datawater) |
Oops, something went wrong.