diff --git a/Cargo.toml b/Cargo.toml index 58c58221715d7a74a4578c26faad049797764921..0174220d9c0c096bd81a7d0050fa9b73fbf9cf1b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,13 @@ [package] name = "mavlink" -version = "0.4.2" +version = "0.5.0" authors = ["Todd Stellanova", "Michal Podhradsky", "Kevin Mehall", "Tim Ryan"] build = "build/main.rs" description = "Implements the MAVLink data interchange format for UAVs." +readme = "README.md" license = "MIT/Apache-2.0" -repository = "https://github.com/3drobotics/rust-mavlink" +repository = "https://github.com/mavlink/rust-mavlink" [build-dependencies] crc16 = "0.3.3" diff --git a/README.md b/README.md index 7c0a5af9ce929bea5914489b4da413b5d53fda20..54abb1f23eb54f8419eeb4230a019cf0ca10eb88 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ with bindings for the [common message set](http://mavlink.org/messages/common). Add to your Cargo.toml: ``` -mavlink = "0.4" +mavlink = "0.5" ``` See [src/bin/mavlink-dump.rs](src/bin/mavlink-dump.rs) for a usage example.