-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
75 lines (65 loc) · 1.69 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[workspace]
members = ["macros"]
[workspace.package]
version = "0.15.0"
authors = ["Valentyn Valiaiev <[email protected]>"]
edition = "2021"
repository = "https://github.com/drone-os/drone-cortexm"
homepage = "https://www.drone-os.com/"
license = "MIT OR Apache-2.0"
[workspace.dependencies.drone-cortexm-macros]
version = "=0.15.0"
path = "macros"
[workspace.dependencies.drone-config]
version = "0.15.0"
path = "../drone/config"
[workspace.dependencies.drone-core]
version = "0.15.0"
path = "../drone-core"
[workspace.dependencies.drone-macros-core]
version = "0.15.0"
path = "../drone-core/macros-core"
[package]
name = "drone-cortexm"
version.workspace = true
authors.workspace = true
edition.workspace = true
repository.workspace = true
homepage.workspace = true
license.workspace = true
documentation = "https://api.drone-os.com/drone-cortexm/0.15/drone_cortexm/"
readme = "README.md"
keywords = [
"arm",
"cortex",
"rtos",
"bare-metal",
"firmware",
]
categories = [
"embedded",
"asynchronous",
"concurrency",
"no-std",
"hardware-support",
]
description = """
ARM® Cortex®-M platform crate for Drone, an Embedded Operating System.
"""
[badges]
maintenance = { status = "actively-developed" }
[features]
default = []
host = ["drone-core/host", "futures/std"]
atomics = ["drone-core/atomics"]
bit-band = []
floating-point-unit = []
memory-protection-unit = []
security-extension = []
all = ["bit-band", "floating-point-unit", "memory-protection-unit", "security-extension"]
[dependencies]
drone-core.workspace = true
drone-cortexm-macros.workspace = true
futures = { version = "0.3.24", default-features = false }
[build-dependencies]
drone-config.workspace = true