xous-kernel/Cargo.toml
Sean Cross fd7bbc463d vexriscv: use upstream package
Use this package rather than the local xous-riscv package.

Signed-off-by: Sean Cross <sean@xobs.io>
2020-01-09 10:45:22 +08:00

17 lines
443 B
TOML

[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]
vexriscv = "0.0.2"
xous-kernel-riscv-rt = { path = "xous-kernel-riscv-rt" }
[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