From d2f75389b2aeced43c9f84bde14e16e18a640600 Mon Sep 17 00:00:00 2001 From: Aumetra Weisman Date: Mon, 7 Oct 2024 14:51:08 +0200 Subject: [PATCH] Add crates.io metadata --- Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 5f2e4a1..f742ba1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,23 @@ name = "asynk-strim" version = "0.1.0" edition = "2021" +# crates.io metadata +rust-version = "1.83" +description = "Lightweight stream generator library" +license = "MIT OR Apache-2.0" +repository = "https://github.com/aumetra/asynk-strim.git" +categories = ["asynchronous", "no-std", "no-std::no-alloc"] +keywords = ["async", "no_std", "stream"] + +# Make crate as small as possible +include = [ + "src/**/*.rs", + "Cargo.toml", + "README.md", + "LICENSE-APACHE", + "LICENSE-MIT", +] + [[bench]] name = "bench" harness = false