clock_generator/firmware/rust/Cargo.toml
finga c79b21d04c
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Bump edition, dependencies and fix clippy [wip]
Bump all edition to 2021, run `cargo update` and manually bump the
following dependencies:
- `nb`
- `avr-device`

Fix several and meanwhile unnecessary uses of unsave blocks and a
unneeded cast.
2023-05-27 15:10:42 +02:00

36 lines
589 B
TOML

[package]
name = "clock-generator"
version = "0.1.0-dev"
edition = "2021"
license = "GPL-3.0-or-later"
[[bin]]
name = "clock-generator"
test = false
bench = false
[dependencies]
panic-halt = "0.2"
nb = "1"
embedded-hal = "0.2"
avr-device = { version = "0.5", features = ["atmega328p"] }
si5351 = "0.2"
[dependencies.atmega-hal]
git = "https://github.com/rahix/avr-hal"
branch = "main"
features = ["atmega328p", "rt"]
[profile.dev]
panic = "abort"
codegen-units = 1
lto = true
opt-level = "s"
[profile.release]
panic = "abort"
codegen-units = 1
debug = true
lto = true
opt-level = "s"