Fully rename the crate
This commit is contained in:
parent
704c54a9d7
commit
4948dd412e
|
@ -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.
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue