2023-01-14 21:11:55 +01:00
|
|
|
[package]
|
2023-01-23 20:57:56 +01:00
|
|
|
name = "rtic-time"
|
2024-04-11 00:00:38 +02:00
|
|
|
version = "2.0.0"
|
2023-02-01 22:11:50 +01:00
|
|
|
|
2023-01-14 21:11:55 +01:00
|
|
|
edition = "2021"
|
2023-02-01 22:11:50 +01:00
|
|
|
authors = [
|
|
|
|
"The Real-Time Interrupt-driven Concurrency developers",
|
|
|
|
"Emil Fresk <emil.fresk@gmail.com>",
|
|
|
|
"Henrik Tjäder <henrik@tjaders.com>",
|
|
|
|
"Jorge Aparicio <jorge@japaric.io>",
|
|
|
|
"Per Lindgren <per.lindgren@ltu.se>",
|
|
|
|
]
|
2023-02-01 21:55:05 +01:00
|
|
|
categories = ["concurrency", "embedded", "no-std", "asynchronous"]
|
2024-04-11 00:00:38 +02:00
|
|
|
description = "Basic definitions and utilities that can be used to keep track of time"
|
2023-02-01 21:55:05 +01:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-12-25 10:24:56 +01:00
|
|
|
repository = "https://github.com/rtic-rs/rtic"
|
2023-01-14 21:11:55 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-01-23 20:05:47 +01:00
|
|
|
critical-section = "1"
|
|
|
|
futures-util = { version = "0.3.25", default-features = false }
|
2023-05-25 08:27:58 +02:00
|
|
|
rtic-common = { version = "1.0.0", path = "../rtic-common" }
|
2024-04-11 00:00:38 +02:00
|
|
|
embedded-hal = { version = "1.0.0" }
|
|
|
|
embedded-hal-async = { version = "1.0.0" }
|
|
|
|
fugit = "0.3.7"
|
2023-04-10 10:34:00 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
parking_lot = "0.12"
|
2023-04-10 13:05:36 +02:00
|
|
|
cassette = "0.2"
|
2023-12-01 08:59:22 +01:00
|
|
|
cooked-waker = "5.0.0"
|