aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 4780b6c4655e660a4d9ee961086cc0d0e765df1e (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
40
41
42
43
44
45
[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"
fugit = "0.3.5"
nb = "1.0.0"
#panic-semihosting = "0.6.0"
usb-device = "0.2.9"
usbd-serial = "0.1.1"
usbd-webusb = "1.0.2"
usbd-human-interface-device = "0.3.1"
embedded-hal = "0.2.7"

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

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

[lib]
test = true
bench = true

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