~ruther/avr-device

ref: d11a9c2fd08b4d2478edf7c1079b046ff6de08c9 avr-device/Cargo.toml -rw-r--r-- 622 bytes
d11a9c2f — Rahix Add crate metadata 5 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
[package]
name = "avr-device"
version = "0.1.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"]

build = "build.rs"

[features]
atmega1280 = []
atmega8 = []
atmega328p = []
atmega32u4 = []
atmega64 = []
attiny85 = []
rt = ["avr-device-macros"]

[dependencies]
bare-metal = "0.2.5"
vcell = "0.1.2"

[dependencies.avr-device-macros]
path = "macros/"
optional = true