[package] name = "litex" version = "0.1.3" authors = ["Tom Vijlbrief "] edition = "2018" description = "Running Rust on the (Linux) Litex VexRiscv FPGA SOC" repository = "https://github.com/tomtor/rust-litex" documentation = "https://github.com/tomtor/rust-litex/blob/master/README.md" license = "GPL-3.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] #embedded-hal = "0.2.3" #panic-halt = "0.2.0" riscv = "0.5.3" riscv-rt = { git = "https://github.com/tomtor/riscv-rt", version = "0.6", branch = "litex" } linked_list_allocator = "0.6" #heapless = "0.5.1" # this lets you use `cargo fix`! [[bin]] name = "litex" test = false bench = false [profile.release] codegen-units = 1 # better optimizations debug = true # symbols are nice and they don't increase the size on Flash lto = true # better optimizations