aboutsummaryrefslogtreecommitdiff
path: root/embassy-time
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2022-10-26 22:18:10 +0200
committerDario Nieuwenhuis <[email protected]>2022-10-26 22:18:10 +0200
commit61560e740dea1b4c7ca036dafd66c834a1ff92e2 (patch)
tree19b08ef1daf8173542d24ddfd7b285a9cf487956 /embassy-time
parentd2246ae693d15187f3af9c263bc02809ba096b80 (diff)
time: add missing cargo manifest fields.
Diffstat (limited to 'embassy-time')
-rw-r--r--embassy-time/Cargo.toml10
1 files changed, 9 insertions, 1 deletions
diff --git a/embassy-time/Cargo.toml b/embassy-time/Cargo.toml
index e3d2cbcdd..9487003cc 100644
--- a/embassy-time/Cargo.toml
+++ b/embassy-time/Cargo.toml
@@ -2,8 +2,16 @@
2name = "embassy-time" 2name = "embassy-time"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5description = "Instant and Duration for embedded no-std systems, with async timer support"
6repository = "https://github.com/embassy-rs/embassy"
7readme = "README.md"
5license = "MIT OR Apache-2.0" 8license = "MIT OR Apache-2.0"
6 9categories = [
10 "embedded",
11 "no-std",
12 "concurrency",
13 "asynchronous",
14]
7 15
8[package.metadata.embassy_docs] 16[package.metadata.embassy_docs]
9src_base = "https://github.com/embassy-rs/embassy/blob/embassy-time-v$VERSION/embassy-time/src/" 17src_base = "https://github.com/embassy-rs/embassy/blob/embassy-time-v$VERSION/embassy-time/src/"