embassy/embassy-stm32/Cargo.toml

45 lines
981 B
TOML
Raw Normal View History

[package]
name = "embassy-stm32"
version = "0.1.0"
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2018"
[features]
defmt-trace = [ ]
defmt-debug = [ ]
defmt-info = [ ]
defmt-warn = [ ]
defmt-error = [ ]
2021-04-06 01:31:29 +02:00
f4 = []
f401 = ["f4"]
f405 = ["f4"]
f407 = ["f4"]
f410 = ["f4"]
f411 = ["f4"]
f412 = ["f4"]
f413 = ["f4"]
f415 = ["f4"]
f417 = ["f4"]
f423 = ["f4"]
f427 = ["f4"]
f429 = ["f4"]
f437 = ["f4"]
f439 = ["f4"]
f446 = ["f4"]
f469 = ["f4"]
f479 = ["f4"]
[dependencies]
embassy = { version = "0.1.0", path = "../embassy" }
2021-04-06 01:31:29 +02:00
embassy-macros = { version = "0.1.0", path = "../embassy-macros" }
2021-03-19 01:30:35 +01:00
embassy-extras = {version = "0.1.0", path = "../embassy-extras" }
defmt = { version = "0.2.0", optional = true }
log = { version = "0.4.11", optional = true }
cortex-m-rt = "0.6.13"
cortex-m = "0.7.1"
embedded-hal = { version = "0.2.4" }
2021-04-06 01:31:29 +02:00
futures = { version = "0.3.5", default-features = false, features = ["async-await"] }
stm32-metapac = { path = "../../stm32-metapac"}