Fully rename the crate

This commit is contained in:
Jake Goulding 2018-11-02 21:41:57 -04:00
parent 704c54a9d7
commit 4948dd412e
2 changed files with 5 additions and 6 deletions

View File

@ -1,14 +1,13 @@
[package] [package]
name = "arduino" name = "ruduino"
version = "0.1.0" version = "0.1.1"
authors = [ authors = [
"The AVR-Rust Project Developers", "The AVR-Rust Project Developers",
"Jake Goulding <jake.goulding@gmail.com>", "Jake Goulding <jake.goulding@gmail.com>",
] ]
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
readme = "README.md" readme = "README.md"
repository = "https://github.com/avr-rust/arduino" repository = "https://github.com/avr-rust/ruduino"
homepage = "https://github.com/avr-rust/arduino"
description = """ description = """
Reusable components for the Arduino Uno. Reusable components for the Arduino Uno.
""" """

View File

@ -7,8 +7,8 @@ This library provides a set of reusable components for the Arduino Uno.
### Register and bit definitions ### Register and bit definitions
```rust ```rust
use arduino::PORTB; // Register use ruduino::PORTB; // Register
use arduino::PORTB7; // Pin use ruduino::PORTB7; // Pin
``` ```
### Prelude ### Prelude