Crates.io | termui |
lib.rs | termui |
version | 0.1.0 |
source | src |
created_at | 2023-04-14 09:26:55.28311 |
updated_at | 2023-04-14 09:26:55.28311 |
description | A terminal user interface library for the lazy |
homepage | |
repository | https://github.com/appcypher/termui |
max_upload_size | |
id | 839058 |
size | 51,757 |
A terminal user interface library for the lazy
cargo
cargo install termui
Run tests
cargo test
For benchmarking and measuring performance, this project leverages
criterion and a test_utils
feature flag
for integrating proptest within the the suite for working with
strategies and sampling from randomly generated values.
Run benchmarks
cargo bench --features test_utils
:balloon: We're thankful for any feedback and help in improving our project! We have a contributing guide to help you get involved. We also adhere to our Code of Conduct.
For formatting Rust in particular, please use cargo +nightly fmt
as it uses
specific nightly features we recommend. Make sure you have nightly
installed.
This project recommends using pre-commit for running pre-commit hooks. Please run this before every commit and/or push.
Once installed, Run pre-commit install
and pre-commit install --hook-type commit-msg
to setup the pre-commit hooks locally. This will reduce failed CI builds.
If you are doing interim commits locally, and for some reason if you don't
want pre-commit hooks to fire, you can run
git commit -a -m "Your message here" --no-verify
.
This project lightly follows the Conventional Commits
convention to help explain
commit history and tie in with our release process. The full specification
can be found here. We recommend prefixing your commits with
a type of fix
, feat
, docs
, ci
, refactor
, etc..., structured like so:
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
For usage questions, usecases, or issues please open an issue in our repository.
We would be happy to try to answer your question or try opening a new issue on Github.
These are references to specifications, talks and presentations, etc.
This project is licensed under the Apache License 2.0, or http://www.apache.org/licenses/LICENSE-2.0.