diff --git a/Cargo.lock b/Cargo.lock index f0381e9..e1b9b61 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5,10 +5,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "embedded-hal" -version = "0.1.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "nb 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -16,16 +17,22 @@ name = "nb" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "void" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "w5500" -version = "0.1.2" +version = "0.1.3" dependencies = [ "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "embedded-hal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "embedded-hal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "nb 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [metadata] "checksum byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "652805b7e73fada9d85e9a6682a4abd490cb52d96aeecc12e33a0de34dfd0d23" -"checksum embedded-hal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "684b1fa3196f78342296d04edc2a6e5d053729d1b64a819dcb072810d706e267" +"checksum embedded-hal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "26944677e4934eb5fb4025501dc0d6cdbcf6bfabd6200fcfee2e7e8eef8c0362" "checksum nb 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "69f380b5fe9fab8c0d7a6a99cda23e2cc0463bedb2cbc3aada0813b98496ecdc" +"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" diff --git a/Cargo.toml b/Cargo.toml index 4e0c484..5cb67f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "w5500" -version = "0.1.3" +version = "0.1.4" authors = ["Michael Watzko "] repository = "https://github.com/kellerkindt/w5500.git" description = "W5500 IoT Controller implementation. Currently UDP sending and receiving is working. WIP" @@ -11,5 +11,5 @@ readme = "README.md" [dependencies] byteorder = { version = "1.2.1", default-features = false } -embedded-hal = "0.1.2" +embedded-hal = "0.2.1" nb = "0.1.1"