Skip to content

Commit

Permalink
Creating the README.
Browse files Browse the repository at this point in the history
  • Loading branch information
kherge committed Jan 17, 2022
1 parent 95aa854 commit 96873eb
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
# Except the license.
!/LICENSE

# Except the README.
!/README.md

# Except the examples.
!/examples/
!/examples/**
Expand Down
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
CarLI
=====

A library for rapid command line tool development.

CarLI is a command line application framework for developing application that provide a single
command and multiple commands. The framework also provides error types tailored for a command
line experience as well as supporting test input and output streams other than those provided
by [`std::io`].

See [`command::Main`] for a complete example.

[`command::Main`]: https://docs.rs/carli/latest/carli/command/trait.Main.html
[`std::io`]: https://doc.rust-lang.org/1.57.0/std/io/index.html

Requirements
------------

- Rust 1.57+

Documentation
-------------

Please see [docs.rs](https://docs.rs/carli/latest/carli).

0 comments on commit 96873eb

Please sign in to comment.