Import https://github.com/tock/libtock-rs/core at commit 828c19d into third_party/lang-items/.

This commit is contained in:
Guillaume Endignoux
2020-07-10 10:27:31 +02:00
parent 529db7b4ef
commit 89e397e718
4 changed files with 287 additions and 0 deletions

15
third_party/lang-items/Cargo.toml vendored Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "libtock_core"
version = "0.1.0"
authors = ["Tock Project Developers <tock-dev@googlegroups.com>"]
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" }