diff --git a/Cargo.toml b/Cargo.toml index 2222e15..5a1a6d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 ", ] 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. """ diff --git a/README.md b/README.md index 734b92e..882ba00 100644 --- a/README.md +++ b/README.md @@ -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