~ruther/avr-guess-the-number

ref: 9d9431e29650e8f5321ea693566c9704cacd7a58 avr-guess-the-number/firmware/Cargo.toml -rw-r--r-- 608 bytes
9d9431e2 — František Boháček chore: add license 1 year, 9 months ago
                                                                                
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
[package]
name = "guess-the-number"
version = "0.1.0"
authors = ["František Boháček <fandabohacek@gmail.com>"]
edition = "2021"

[[bin]]
path = "src/entrypoint.rs"
name = "guess-the-number"
test = false
bench = false

[dependencies]
panic-halt = "0.2.0"
ufmt = "0.1.0"
nb = "0.1.2"

[dependencies.atmega-hal]
path = "../avr-hal/mcu/atmega-hal"
features = ["rt","atmega8"]

[dependencies.avr-hal-generic]
path = "../avr-hal/avr-hal-generic"

[profile.dev]
panic = "abort"
lto = true
opt-level = "s"

[profile.release]
panic = "abort"
strip = true
codegen-units = 1
debug = false
lto = true
opt-level = "s"
Do not follow this link