rtic/rtic-time/Cargo.toml

27 lines
765 B
TOML
Raw Normal View History

2023-01-14 21:11:55 +01:00
[package]
2023-01-23 20:57:56 +01:00
name = "rtic-time"
version = "1.0.0-alpha.1"
2023-01-14 21:11:55 +01:00
edition = "2021"
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"]
description = "rtic-time lib TODO"
license = "MIT OR Apache-2.0"
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]
critical-section = "1"
futures-util = { version = "0.3.25", default-features = false }
2023-02-01 21:55:05 +01:00
rtic-common = { version = "1.0.0-alpha.0", path = "../rtic-common" }
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"