* Changes from #580 * fixes USB cancel panic * style fixes * Update src/env/tock/storage.rs Co-authored-by: Zach Halvorsen <zhalvorsen@google.com> --------- Co-authored-by: Zach Halvorsen <zhalvorsen@google.com>
32 lines
963 B
TOML
32 lines
963 B
TOML
[package]
|
|
name = "lang_items"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Tock Project Developers <tock-dev@googlegroups.com>",
|
|
"Guillaume Endignoux <guillaumee@google.com>",
|
|
]
|
|
license = "MIT/Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[target.'cfg(any(target_arch = "arm", target_arch = "riscv32"))'.dependencies.libtock_runtime]
|
|
path = "../../third_party/libtock-rs/runtime"
|
|
default-features = false
|
|
features = ["no_auto_layout", "alloc_init"]
|
|
|
|
[dependencies]
|
|
libtock_drivers = { path = "../libtock-drivers" }
|
|
libtock_platform = { path = "../../third_party/libtock-rs/platform" }
|
|
libtock_low_level_debug = { path = "../../third_party/libtock-rs/apis/low_level_debug" }
|
|
libtock_leds = { path = "../../third_party/libtock-rs/apis/leds" }
|
|
libtock_console = { path = "../../third_party/libtock-rs/apis/console" }
|
|
|
|
[dependencies.linked_list_allocator]
|
|
version = "0.10.4"
|
|
default-features = false
|
|
features = ["const_mut_refs"]
|
|
|
|
[features]
|
|
debug_allocations = []
|
|
panic_console = []
|
|
std = []
|