diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-10-16 20:07:48 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2023-10-16 20:11:35 +0200 |
| commit | 213b4c9dca2e541c00e702b4476db3612f4d62b9 (patch) | |
| tree | f72cd3ee20e6e30e8e77a634144cb026c3ddd732 /embassy-time/Cargo.toml | |
| parent | 889d482d2d56f278826b0b1b59c53c22f91ef413 (diff) | |
time: add `links` key, release v0.1.5.
Diffstat (limited to 'embassy-time/Cargo.toml')
| -rw-r--r-- | embassy-time/Cargo.toml | 8 |
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] |
| 2 | name = "embassy-time" | 2 | name = "embassy-time" |
| 3 | version = "0.1.4" | 3 | version = "0.1.5" |
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | description = "Instant and Duration for embedded no-std systems, with async timer support" | 5 | description = "Instant and Duration for embedded no-std systems, with async timer support" |
| 6 | repository = "https://github.com/embassy-rs/embassy" | 6 | repository = "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. | ||
| 20 | links = "embassy-time" | ||
| 21 | |||
| 16 | [package.metadata.embassy_docs] | 22 | [package.metadata.embassy_docs] |
| 17 | src_base = "https://github.com/embassy-rs/embassy/blob/embassy-time-v$VERSION/embassy-time/src/" | 23 | src_base = "https://github.com/embassy-rs/embassy/blob/embassy-time-v$VERSION/embassy-time/src/" |
| 18 | src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-time/src/" | 24 | src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-time/src/" |
