45 lines
1.2 KiB
TOML
45 lines
1.2 KiB
TOML
[package]
|
|
categories = ["embedded", "no-std"]
|
|
name = "kirdy"
|
|
description = "kirdy firmware"
|
|
license = "GPL-3.0-only"
|
|
authors = ["topquark12 <aw@m-labs.hk>"]
|
|
version = "0.0.0"
|
|
keywords = ["kirdy", "laser", "physics"]
|
|
repository = "https://git.m-labs.hk/M-Labs/kirdy"
|
|
edition = "2021"
|
|
|
|
[package.metadata.docs.rs]
|
|
features = []
|
|
default-target = "thumbv7em-none-eabihf"
|
|
|
|
[dependencies]
|
|
panic-halt = "0.2.0"
|
|
cortex-m = "0.7.6"
|
|
cortex-m-rt = { version = "0.7.1", features = ["device"] }
|
|
cortex-m-semihosting = "0.5.0"
|
|
log = "0.4.17"
|
|
bare-metal = "1"
|
|
nb = "1"
|
|
cortex-m-log = { version = "0.7.0", features = ["log-integration", "semihosting"] }
|
|
stm32f4xx-hal = { version = "0.14.0", features = ["rt", "stm32f407", "usb_fs"] }
|
|
stm32-eth = { version = "0.5.2", features = ["stm32f407"] }
|
|
smoltcp = { version = "0.10.0", default-features = false, features = ["proto-ipv4", "socket-tcp", "log", "medium-ethernet"] }
|
|
num-traits = { version = "0.2.15", default-features = false, features = ["libm"] }
|
|
usb-device = "0.2.9"
|
|
usbd-serial = "0.1.1"
|
|
fugit = "0.3.6"
|
|
rtt-target = { version = "0.3.1", features = ["cortex-m"] }
|
|
|
|
|
|
[features]
|
|
semihosting = ["cortex-m-log/semihosting"]
|
|
RTT = []
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
incremental = false
|
|
debug = true
|
|
opt-level = "s"
|
|
lto = true
|