Update third_party/lang-items to support OpenSK.

This commit is contained in:
Guillaume Endignoux
2020-07-10 10:33:44 +02:00
parent fbc7044328
commit 76c0840354
5 changed files with 166 additions and 89 deletions

View File

@@ -1,15 +1,19 @@
[package]
name = "libtock_core"
name = "lang_items"
version = "0.1.0"
authors = ["Tock Project Developers <tock-dev@googlegroups.com>"]
authors = [
"Tock Project Developers <tock-dev@googlegroups.com>"
"Guillaume Endignoux <guillaumee@google.com>",
]
license = "MIT/Apache-2.0"
edition = "2018"
[features]
alloc = ["alloc_init", "linked_list_allocator"]
alloc_init = []
custom_panic_handler = []
custom_alloc_error_handler = []
[dependencies]
linked_list_allocator = { optional = true, version = "=0.8.1", default-features = false }
libtock_codegen = { path = "../codegen" }
libtock_core = { path = "../../third_party/libtock-rs/core", default-features = false, features = ["alloc_init", "custom_panic_handler", "custom_alloc_error_handler"] }
libtock_drivers = { path = "../libtock-drivers" }
linked_list_allocator = { version = "0.8.1", default-features = false }
[features]
debug_allocations = []
panic_console = []
std = []