aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: b8cb657f34912f6c9746aa24909a967a98977520 (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
31
32
33
34
35
36
37
38
39
[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]
cortex-m = "0.7.6"
cortex-m-rt = "0.7.1"
nb = "1.0.0"
#panic-semihosting = "0.6.0"
usb-device = "0.2.9"
usbd-serial = "0.1.1"
usbd-webusb = "1.0.2"
embedded-hal = "0.2.7"

[dependencies.stm32f1xx-hal]
version = "0.9"
features = ["stm32f103", "stm32-usbd", "rt"]

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

[patch.crates-io]
#usb-device = { path = "../usb-device" }