~ruther/avr-guess-the-number

ref: d496c1b47a62846703277a36d073c601511bb501 avr-guess-the-number/Cargo.toml -rw-r--r-- 686 bytes
d496c1b4 — František Boháček feat: add avr-device lib 2 years 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
37
38
39
40
[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.avr-device]
path = "../avr-device"
features = ["rt","atmega8"]

[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