-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
81 lines (73 loc) · 1.78 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
76
77
78
79
80
81
[workspace]
members = ["config", "stream", "openocd"]
[workspace.package]
version = "0.15.0"
authors = ["Valentyn Valiaiev <[email protected]>"]
edition = "2021"
repository = "https://github.com/drone-os/drone"
homepage = "https://www.drone-os.com/"
license = "MIT OR Apache-2.0"
[workspace.dependencies.drone-stream]
version = "=0.15.0"
path = "stream"
[workspace.dependencies.drone-config]
version = "=0.15.0"
path = "config"
[workspace.dependencies.drone-openocd]
version = "=0.15.0"
path = "openocd"
[workspace.dependencies]
eyre = "0.6.8"
serde = { version = "1.0.144", features = ["derive"] }
[package]
name = "drone"
version.workspace = true
authors.workspace = true
edition.workspace = true
repository.workspace = true
homepage.workspace = true
license.workspace = true
exclude = ["/project-templates"]
documentation = "https://api.drone-os.com/drone/0.15/drone/"
default-run = "drone"
readme = "README.md"
keywords = [
"async",
"real-time",
"bare-metal",
"rtos",
"framework",
]
categories = [
"embedded",
"asynchronous",
"concurrency",
"no-std",
"os",
]
description = """
CLI utility for Drone, an Embedded Operating System.
"""
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
atty = "0.2.14"
clap = { version = "3.2.22", features = ["derive"] }
color-eyre = "0.6.2"
drone-config.workspace = true
drone-openocd.workspace = true
drone-stream.workspace = true
eyre.workspace = true
heck = "0.4.0"
libc = "0.2.132"
prettytable-rs = "0.9.0"
regex = "1.6.0"
sailfish = "0.5.0"
serde_json = "1.0.85"
serde.workspace = true
termcolor = "1.1.3"
thiserror = "1.0.35"
time = { version = "0.3.14", features = ["macros", "local-offset"] }
tracing = "0.1.36"
tracing-subscriber = { version = "0.3.15", features = ["time"] }
walkdir = "2.3.2"