Simple, opiniated library for building Cog commands in rust.
These instructions will get you a copy of the project up and running for use in your own bundles.
```toml
[dependencies] cog = "0.1" ```
Write your bundle:
```rust // main.rs extern crate cog;
fn main() { let res = cog::Bundle::new("my-bundle") .command("hello", &hello_world) .run() .expect("failed to run bundle"); }
// cog::Args is a Vec
Use the resulting executable in cog's config.yaml
:
yaml
commands:
hello:
executable: /usr/local/bin/my-bundle
documentation: hello [--name=<name>]
# ...
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us. So far this file does not exist, help welcome on how to handle this.
We use SemVer for versioning. For the versions available, see the tags on this repository.
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details