diff --git a/Cargo.toml b/Cargo.toml index dd2f57f..ae7424f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forte" -version = "1.0.0-alpha.3" +version = "1.0.0-dev" edition = "2024" license = "MIT OR Apache-2.0" description = "A low-overhead thread-pool with support for non-static async closures" diff --git a/README.md b/README.md index c70073e..02d8549 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # Forte +[![Crates.io](https://img.shields.io/crates/v/forte.svg)](https://crates.io/crates/forte) +[![Docs](https://docs.rs/forte/badge.svg)](https://docs.rs/forte/latest/forte/) + An async-compatible thread-pool aiming for "speed through simplicity". Forte is a parallel & async work scheduler designed to accommodate very large workloads with many short-lived tasks. It replicates the `rayon_core` api but with native support for futures and async tasks.