aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 3a8e0310126b5498a6a903ef4bdbdda70e742ae2 (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
29
30
[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"
nb = "1.0.0"
embedded-hal = "0.2.7"

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