From eba5b221ae073464962158b36ad9070ed2d23476 Mon Sep 17 00:00:00 2001 From: Eric Holk Date: Wed, 10 Aug 2022 16:05:46 -0700 Subject: [PATCH 1/3] Add description and repository fields to Cargo.toml --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 9c78f4e..02a2d6b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,10 +3,12 @@ [package] name = "stackfuture" +description = "StackFuture is a wrapper around futures that stores the wrapped future in space provided by the caller." version = "0.1.0" edition = "2021" license = "MIT" authors = ["Microsoft"] +repository = "https://github.com/microsoft/stackfuture" [dependencies] From 32b20010bca21e000e2a143db24067da755f99ed Mon Sep 17 00:00:00 2001 From: Eric Holk Date: Wed, 10 Aug 2022 16:14:46 -0700 Subject: [PATCH 2/3] Add keywords and categories --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 02a2d6b..2d57ace 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,6 +9,8 @@ edition = "2021" license = "MIT" authors = ["Microsoft"] repository = "https://github.com/microsoft/stackfuture" +keywords = ["async", "no_std", "futures"] +categories = ["asynchronous"] [dependencies] From 596409663b203106f4a99c4b5f76448f5c208e40 Mon Sep 17 00:00:00 2001 From: Eric Holk Date: Wed, 10 Aug 2022 16:16:27 -0700 Subject: [PATCH 3/3] Add a few more categories --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2d57ace..5bb3847 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ license = "MIT" authors = ["Microsoft"] repository = "https://github.com/microsoft/stackfuture" keywords = ["async", "no_std", "futures"] -categories = ["asynchronous"] +categories = ["asynchronous", "no-std", "rust-patterns"] [dependencies]