Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
First commit. Just a basic setup for parsing command line arguments
  • Loading branch information
datawater committed Jun 11, 2024
0 parents commit 06319f7
Show file tree
Hide file tree
Showing 13 changed files with 2,388 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
license.html -linguist-detectable
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target/
313 changes: 313 additions & 0 deletions Cargo.lock

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

10 changes: 10 additions & 0 deletions Cargo.toml
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"
4 changes: 4 additions & 0 deletions LICENSE
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;
12 changes: 12 additions & 0 deletions Makefile
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
32 changes: 32 additions & 0 deletions README.md
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)
Loading

0 comments on commit 06319f7

Please sign in to comment.