embassy/embassy-stm32f4-examples/Cargo.toml

34 lines
980 B
TOML
Raw Normal View History

2020-12-30 02:10:47 +01:00
[package]
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2018"
2021-01-04 19:52:00 +01:00
name = "embassy-stm32f4-examples"
2020-12-30 02:10:47 +01:00
version = "0.1.0"
[features]
default = [
"defmt-default",
]
defmt-default = []
defmt-trace = []
defmt-debug = []
defmt-info = []
defmt-warn = []
defmt-error = []
[dependencies]
embassy = { version = "0.1.0", path = "../embassy", features = ["defmt", "defmt-trace"] }
2021-03-02 21:14:58 +01:00
embassy-traits = { version = "0.1.0", path = "../embassy-traits", features = ["defmt"] }
2021-02-16 01:38:36 +01:00
embassy-stm32f4 = { version = "*", path = "../embassy-stm32f4", features = ["stm32f401"] }
2020-12-30 02:10:47 +01:00
2021-02-24 08:44:23 +01:00
defmt = "0.2.0"
defmt-rtt = "0.2.0"
2020-12-30 02:10:47 +01:00
2021-02-14 23:26:50 +01:00
cortex-m = "0.7.1"
2020-12-30 02:10:47 +01:00
cortex-m-rt = "0.6.13"
embedded-hal = { version = "0.2.4" }
panic-probe = "0.1.0"
2021-02-16 01:38:36 +01:00
stm32f4xx-hal = { version = "0.8.3", features = ["rt", "stm32f401"], git = "https://github.com/stm32-rs/stm32f4xx-hal.git"}
2020-12-30 02:10:47 +01:00
futures = { version = "0.3.8", default-features = false, features = ["async-await"] }
rtt-target = { version = "0.3", features = ["cortex-m"] }