-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (36 loc) · 920 Bytes
/
Cargo.toml
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
41
42
43
44
[package]
name = "rust-arduino-servo"
version = "0.1.0"
edition = "2018"
[profile.test]
opt-level = "s"
[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"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
panic-halt = "0.2.0"
ufmt = "0.1.0"
nb = "0.1.2"
embedded-hal = "0.2.3"
pwm-pca9685 = "0.3.1"
avr-device = "0.3"
# Oct 30, 2021 commit of avr-hal
[dependencies.arduino-hal]
git = "https://github.com/Rahix/avr-hal"
rev = "4b8a0572e5f6a6928b4ce30e110e5e7219a2a9b1"
features = ["arduino-uno"]
[dependencies.avr-hal-generic]
git = "https://github.com/Rahix/avr-hal"
rev = "4b8a0572e5f6a6928b4ce30e110e5e7219a2a9b1"
[dependencies.atmega-hal]
git = "https://github.com/Rahix/avr-hal"
rev = "4b8a0572e5f6a6928b4ce30e110e5e7219a2a9b1"