~ruther/avr-device

ref: d579a49f66661e988784244e5251e8debd618c02 avr-device/Cargo.toml -rw-r--r-- 847 bytes
d579a49f — Boris Vinogradov fix: atmegaX8 TIFR should be read-write 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
[package]
name = "avr-device"
version = "0.2.2"

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]
atmega1280 = []
atmega168 = []
atmega2560 = []
atmega8 = []
atmega328p = []
atmega48p = []
atmega32u4 = []
atmega64 = []
atmega644 = []
attiny84 = []
attiny85 = []
attiny88 = []
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.2.2"
optional = true
Do not follow this link