~ruther/avr-device

ref: 84f2b65144b64a4e70aa670f753f4ab49c0a5aaa avr-device/Cargo.toml -rw-r--r-- 1.2 KiB
84f2b651 — David Add ATmega8U2 4 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
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "avr-device"
version = "0.3.0"

authors = ["Rahix <rahix@rahix.de>"]
edition = "2018"
description = "Register access crate for AVR microcontrollers"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Rahix/avr-device"
readme = "README.md"
keywords = ["avr", "arduino"]
categories = ["no-std", "embedded", "hardware-support"]

include = [
    "/src/**/*.rs",
    "/LICENSE-*",
    "/README.md",
]

[package.metadata.docs.rs]
all-features = true

[features]
device-selected = []
atmega1280 = ["device-selected"]
atmega168 = ["device-selected"]
atmega2560 = ["device-selected"]
atmega8 = ["device-selected"]
atmega8u2 = ["device-selected"]
atmega328p = ["device-selected"]
atmega328pb = ["device-selected"]
atmega4809 = ["device-selected"]
atmega48p = ["device-selected"]
atmega32u4 = ["device-selected"]
atmega64 = ["device-selected"]
atmega644 = ["device-selected"]
attiny84 = ["device-selected"]
attiny841 = ["device-selected"]
attiny85 = ["device-selected"]
attiny861 = ["device-selected"]
attiny88 = ["device-selected"]
rt = ["avr-device-macros"]

[dependencies]
bare-metal = "0.2.5"
vcell = "0.1.2"
cfg-if = "0.1.10"

[dependencies.avr-device-macros]
path = "macros/"
version = "=0.3.0"
optional = true
Do not follow this link