2019-12-18 01:59:00 +00:00
|
|
|
[package]
|
|
|
|
name = "xous-kernel"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Sean Cross <sean@xobs.io>"]
|
|
|
|
edition = "2018"
|
|
|
|
description = "Core kernel for Xous, including task switching and memory management"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-01-09 02:45:22 +00:00
|
|
|
vexriscv = "0.0.2"
|
2019-12-19 04:17:07 +00:00
|
|
|
xous-kernel-riscv-rt = { path = "xous-kernel-riscv-rt" }
|
2019-12-18 01:59:00 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
codegen-units = 1 # 1 better optimizations
|
|
|
|
debug = true # symbols are nice and they don't increase the size on Flash
|
|
|
|
lto = true
|
|
|
|
#opt-level=0
|