-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: consolidate and update docs, include features and roadmap
- Loading branch information
Showing
2 changed files
with
28 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,2 @@ | ||
#![doc( | ||
html_logo_url = "https://raw.githubusercontent.com/kruserr/i6/main/assets/logo/logo.svg", | ||
html_favicon_url = "https://raw.githubusercontent.com/kruserr/i6/main/assets/logo/favicon.ico" | ||
)] | ||
|
||
//! <p align="center"> | ||
//! <a href="https://github.com/kruserr/i6" target="_blank"> | ||
//! <img width="300" src="https://raw.githubusercontent.com/kruserr/i6/main/assets/logo/logo.svg"> | ||
//! </a> | ||
//! <br/> | ||
//! <br/> | ||
//! <a href="https://github.com/kruserr/i6/releases" target="_blank"> | ||
//! <img src="https://img.shields.io/github/v/release/kruserr/i6?sort=semver&logo=GitHub&logoColor=white"> | ||
//! </a> | ||
//! <a href="https://crates.io/crates/i6" target="_blank"> | ||
//! <img src="https://img.shields.io/crates/v/i6?logo=Rust&logoColor=white"/> | ||
//! </a> | ||
//! <br/> | ||
//! <a href="https://hub.docker.com/r/kruserr/i6" target="_blank"> | ||
//! <img src="https://img.shields.io/docker/v/kruserr/i6?sort=semver&logo=docker&logoColor=white"/> | ||
//! </a> | ||
//! <a href="https://codecov.io/gh/kruserr/i6" target="_blank"> | ||
//! <img src="https://img.shields.io/codecov/c/gh/kruserr/i6?logo=Codecov&logoColor=white"/> | ||
//! </a> | ||
//! </p> | ||
//! | ||
//! # i6 | ||
//! A collection of tools | ||
//! | ||
//! ## Documentation | ||
//! Visit the [Documentation](https://docs.rs/i6). | ||
//! | ||
//! ## Getting Started | ||
//! ### Cargo | ||
//! Install and run with cargo | ||
//! ```sh | ||
//! cargo install --locked i6 | ||
//! i6 | ||
//! ``` | ||
//! | ||
//! ### Docker | ||
//! Run with docker | ||
//! ```bash | ||
//! docker run -it --rm --name i6 kruserr/i6:0.1 | ||
//! ``` | ||
//! | ||
//! ### Git and cargo | ||
//! Clone the repo, build from source and run | ||
//! ```bash | ||
//! git clone https://github.com/kruserr/i6.git | ||
//! cd i6 | ||
//! cargo install --locked --path . | ||
//! i6 | ||
//! ``` | ||
pub mod http; | ||
pub mod timer; |