aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-11-22 13:59:28 +0000
committerGitHub <[email protected]>2022-11-22 13:59:28 +0000
commitca4f615b25d2e135f3f8d6caf99fceaab1e01c24 (patch)
tree6b618d964ca08eb0df11e026e2ff6efeb454bd12
parent5c52d6c2172ba76267fd79b74f406fc74a50744d (diff)
parent51233c0357c5ef694c6751c2cf62c54777e2baf0 (diff)
Merge #1067
1067: doc: update cargo manifests with keywords r=lulf a=lulf Co-authored-by: Ulf Lilleengen <[email protected]>
-rw-r--r--embassy-executor/Cargo.toml8
-rw-r--r--embassy-macros/Cargo.toml7
2 files changed, 14 insertions, 1 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index d0f51646d..910d6fa37 100644
--- a/embassy-executor/Cargo.toml
+++ b/embassy-executor/Cargo.toml
@@ -3,7 +3,13 @@ name = "embassy-executor"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6 6description = "async/await executor designed for embedded usage"
7repository = "https://github.com/embassy-rs/embassy"
8categories = [
9 "embedded",
10 "no-std",
11 "asynchronous",
12]
7 13
8[package.metadata.embassy_docs] 14[package.metadata.embassy_docs]
9src_base = "https://github.com/embassy-rs/embassy/blob/embassy-executor-v$VERSION/embassy-executor/src/" 15src_base = "https://github.com/embassy-rs/embassy/blob/embassy-executor-v$VERSION/embassy-executor/src/"
diff --git a/embassy-macros/Cargo.toml b/embassy-macros/Cargo.toml
index 91d5ec8a3..98e4d1c70 100644
--- a/embassy-macros/Cargo.toml
+++ b/embassy-macros/Cargo.toml
@@ -3,6 +3,13 @@ name = "embassy-macros"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6description = "macros for creating the entry point and tasks for embassy-executor"
7repository = "https://github.com/embassy-rs/embassy"
8categories = [
9 "embedded",
10 "no-std",
11 "asynchronous",
12]
6 13
7[dependencies] 14[dependencies]
8syn = { version = "1.0.76", features = ["full", "extra-traits"] } 15syn = { version = "1.0.76", features = ["full", "extra-traits"] }