-
Notifications
You must be signed in to change notification settings - Fork 50
/
Cargo.toml
41 lines (34 loc) · 917 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
[workspace]
members = [
".",
"./core_generator",
]
[package]
name = "ruduino"
version = "0.4.0"
edition = "2018"
authors = [
"The AVR-Rust Project Developers",
"Jake Goulding <jake.goulding@gmail.com>",
"Dylan McKay <me@dylanmckay.io>",
]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/avr-rust/ruduino"
description = """
Reusable components for AVR microcontrollers
"""
keywords = ["avr", "arduino", "uno"]
[features]
default = ["avr-std-stub"]
all-mcus = []
[dependencies]
avr-config = { version = "2.0", features = ["cpu-frequency"] }
avr_delay = { git = "https://github.com/avr-rust/delay", rev = "849918a8dfb2" }
avr-std-stub = { version = "1.0", optional = true }
const_env--value = "0.1"
target-cpu-macro = "0.1"
[build-dependencies]
avr-mcu = "0.3"
[package.metadata.docs.rs]
all-features = true # we specifically want to enable 'all-mcus' for documentation