aboutsummaryrefslogtreecommitdiff
path: root/embassy-time/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-10-16 20:07:48 +0200
committerDario Nieuwenhuis <[email protected]>2023-10-16 20:11:35 +0200
commit213b4c9dca2e541c00e702b4476db3612f4d62b9 (patch)
treef72cd3ee20e6e30e8e77a634144cb026c3ddd732 /embassy-time/Cargo.toml
parent889d482d2d56f278826b0b1b59c53c22f91ef413 (diff)
time: add `links` key, release v0.1.5.
Diffstat (limited to 'embassy-time/Cargo.toml')
-rw-r--r--embassy-time/Cargo.toml8
1 files changed, 7 insertions, 1 deletions
diff --git a/embassy-time/Cargo.toml b/embassy-time/Cargo.toml
index e4b88d784..87b57d1e1 100644
--- a/embassy-time/Cargo.toml
+++ b/embassy-time/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "embassy-time" 2name = "embassy-time"
3version = "0.1.4" 3version = "0.1.5"
4edition = "2021" 4edition = "2021"
5description = "Instant and Duration for embedded no-std systems, with async timer support" 5description = "Instant and Duration for embedded no-std systems, with async timer support"
6repository = "https://github.com/embassy-rs/embassy" 6repository = "https://github.com/embassy-rs/embassy"
@@ -13,6 +13,12 @@ categories = [
13 "asynchronous", 13 "asynchronous",
14] 14]
15 15
16# Prevent multiple copies of this crate in the same binary.
17# Needed because different copies might get different tick rates, causing
18# wrong delays if the time driver is using one copy and user code is using another.
19# This is especially common when mixing crates from crates.io and git.
20links = "embassy-time"
21
16[package.metadata.embassy_docs] 22[package.metadata.embassy_docs]
17src_base = "https://github.com/embassy-rs/embassy/blob/embassy-time-v$VERSION/embassy-time/src/" 23src_base = "https://github.com/embassy-rs/embassy/blob/embassy-time-v$VERSION/embassy-time/src/"
18src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-time/src/" 24src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-time/src/"