Update cargo.toml

This commit is contained in:
asonix 2023-11-25 21:13:49 -06:00
parent ef3b22d352
commit 842fc933ef
2 changed files with 8 additions and 1 deletions

View file

@ -1,6 +1,13 @@
[package]
name = "async-cpupool"
description = "A simple async threadpool for CPU-bound tasks"
version = "0.1.0"
license = "GPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/safe-async/async-cpupool"
documentation = "https://docs.rs/async-cpupool"
readme = "README.md"
keywords = ["async", "blocking", "threadpool"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -1,6 +1,6 @@
# Async CPUPool
A simple threadpool for CPU-bound tasks
A simple async threadpool for CPU-bound tasks
## Usage