Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down