From 842fc933ef804afc95827abdc2bc42267712f3db Mon Sep 17 00:00:00 2001 From: asonix Date: Sat, 25 Nov 2023 21:13:49 -0600 Subject: [PATCH] Update cargo.toml --- Cargo.toml | 7 +++++++ README.md | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bc04128..47de127 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] +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 diff --git a/README.md b/README.md index 52a402c..6dc0fd3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Async CPUPool -A simple threadpool for CPU-bound tasks +A simple async threadpool for CPU-bound tasks ## Usage