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]
name = "arduino"
version = "0.1.0"
name = "ruduino"
version = "0.1.1"
authors = [
"The AVR-Rust Project Developers",
"Jake Goulding <jake.goulding@gmail.com>",
]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/avr-rust/arduino"
homepage = "https://github.com/avr-rust/arduino"
repository = "https://github.com/avr-rust/ruduino"
description = """
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
```rust
use arduino::PORTB; // Register
use arduino::PORTB7; // Pin
use ruduino::PORTB; // Register
use ruduino::PORTB7; // Pin
```
### Prelude