-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
51 lines (45 loc) · 1.03 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
[workspace]
members = ["macros"]
[package]
name = "drone-riscv"
version = "0.14.0"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
resolver = "2"
repository = "https://github.com/drone-os/drone-riscv"
homepage = "https://www.drone-os.com/"
documentation = "https://api.drone-os.com/drone-riscv/0.14/drone_riscv/"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = [
"risc-v",
"rtos",
"bare-metal",
"firmware",
]
categories = [
"embedded",
"asynchronous",
"concurrency",
"no-std",
"hardware-support",
]
description = """
RISC-V platform crate for Drone, an Embedded Operating System.
"""
[badges]
maintenance = { status = "actively-developed" }
[features]
default = []
std = ["drone-core/std", "futures/std"]
m-extension = []
a-extension = []
c-extension = []
[dependencies.drone-riscv-macros]
version = "=0.14.0"
path = "macros"
[dependencies.drone-core]
version = "0.14.0"
path = "../drone-core"
[dependencies]
futures = { version = "0.3.0", default-features = false }