-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (27 loc) · 935 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "litex"
version = "0.1.4"
authors = ["Tom Vijlbrief <tvijlbrief@gmail.com>"]
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 = { path = "riscv-rt" }
riscv-rt = { git = "https://github.com/tomtor/riscv-rt", version = "0.6.2", 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