From 4948dd412e975d207b032577a1eb6bb04403505b Mon Sep 17 00:00:00 2001 From: Jake Goulding Date: Fri, 2 Nov 2018 21:41:57 -0400 Subject: [PATCH] Fully rename the crate --- Cargo.toml | 7 +++---- README.md | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) 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