forked from tock/libtock-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (46 loc) · 1.22 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
[package]
authors = ["Tock Project Developers <[email protected]>"]
categories = ["embedded", "no-std", "os"]
description = """Tock Rust userspace library collection. Provides all the \
tools needed to create a Tock Rust process binary."""
edition = "2021"
license = "Apache-2.0 OR MIT"
name = "libtock"
repository = "https://www.github.com/tock/libtock-rs"
version = "0.1.0"
[dependencies]
libtock_alarm = { path = "apis/alarm" }
libtock_buttons = { path = "apis/buttons" }
libtock_console = { path = "apis/console" }
libtock_debug_panic = { path = "panic_handlers/debug_panic" }
libtock_leds = { path = "apis/leds" }
libtock_low_level_debug = { path = "apis/low_level_debug" }
libtock_platform = { path = "platform" }
libtock_runtime = { path = "runtime" }
[profile.dev]
panic = "abort"
lto = true
debug = true
[profile.release]
panic = "abort"
lto = true
debug = true
[workspace]
exclude = ["tock"]
members = [
"apis/alarm",
"apis/gpio",
"apis/buttons",
"apis/console",
"apis/leds",
"apis/low_level_debug",
"panic_handlers/debug_panic",
"panic_handlers/small_panic",
"platform",
"runner",
"runtime",
"syscalls_tests",
"tools/print_sizes",
"ufmt",
"unittest",
]