16 lines
437 B
TOML
16 lines
437 B
TOML
[package]
|
|
name = "firmware"
|
|
version = "0.1.0"
|
|
authors = ["Sijmen Schoon <me@sijmenschoon.nl>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
cortex-m = "0.7.1"
|
|
cortex-m-rt = "0.6.13"
|
|
panic-halt = "0.2.0"
|
|
stm32f0xx-hal = { version = "0.17.1", features = ["stm32f042", "stm32-usbd"] }
|
|
usb-device = "0.2.7"
|
|
usbd-hid-device = "0.1.1"
|
|
usbd-serial = "0.1.1"
|