clock_generator/firmware/rust/Cargo.toml
finga f611154d5d
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
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 13:31:46 +02:00

35 lines
571 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"
lto = true
opt-level = "s"
[profile.release]
panic = "abort"
codegen-units = 1
debug = true
lto = true
opt-level = "s"