# cmasfo-dev
This is CMASFO's Rust Dev Crate.
It can be both a binary or a library.
## How to Use as a Binary
There are cli mode, and gui mode.
```
cargo install cmasfo-dev
cargo cmasfo-cli (cli mode)
cargo cmasfo-gui (gui mode)
```
## How to Use as a Library
Just add this as a dependency to your Cargo.toml.
```
[dependencies]
cmasfo-dev = "*"
```
But using this as a whole might be inefficient.
I'll try to split things into multiple features.
For Example:
```
[dependencies]
cmasfo-dev = { version = "*", features = ["gui", "web"] }
```