-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (28 loc) · 918 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "smartoris-exti"
version = "0.1.0"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
resolver = "2"
repository = "https://github.com/smartoris/smartoris-exti"
readme = "README.md"
license = "MIT OR Apache-2.0"
description = """
External Interrupt Drone OS driver for STM32F4 micro-controllers.
"""
[badges]
maintenance = { status = "actively-developed" }
[features]
default = []
std = [
"drone-core/std",
"drone-cortexm/std",
"drone-stm32-map/std",
"futures/std",
]
[dependencies]
drone-core = { version = "0.14.0", path = "../../drone-os/drone-core" }
drone-cortexm = { version = "0.14.0", path = "../../drone-os/drone-cortexm" }
drone-stm32-map = { version = "0.14.0", features = ["exti"], path = "../../drone-os/drone-stm32-map" }
futures = { version = "0.3.0", default-features = false }
displaydoc = { version = "0.1", default-features = false }