aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 0d23eb7cf9f577770c85fd6d9ef05fb9a03003eb (plain)
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
[package]
name = "luchie"
version = "0.1.0"
authors = ["Brian Cully <bjc@kublai.com>"]
readme = "README.org"
license = "GPL-3.0-only"
repository = "https://git.spork.org/luchie.git"
edition = "2021"

[profile.dev]
opt-level = 0
lto = false

[profile.release]
opt-level = 3
lto = true
codegen-units = 1

[dependencies]
gd32vf103-pac = "0.4.0"
gd32vf103xx-hal = "0.5.0"
riscv = "0.8.0"
riscv-rt = "0.9.0"

[[bin]]
name = "luchie"
test = false
bench = false