From 348928ba41ce0ee671828a74dcf17553e5e0a16f Mon Sep 17 00:00:00 2001 From: Astro Date: Thu, 14 Mar 2019 20:23:57 +0100 Subject: [PATCH] Cargo.toml: point stm32f4xx-hal+stm32-eth dependencies to git --- Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d4dd5bd..7839098 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,9 +27,10 @@ cortex-m-rt = { version = "0.6", features = ["device"] } cortex-m-log = { version = "0.4", features = ["log-integration"] } stm32f4 = { version = "0.6", features = ["rt", "stm32f429"] } embedded-hal = "0.2" -stm32f4xx-hal = { git = "https://github.com/stm32-rs/stm32f4xx-hal.git", features = ["rt", "stm32f429"] } #stm32f4xx-hal = { version = "0.3.0", features = ["rt", "stm32f429"] } -stm32-eth = { version = "0.1.0", features = ["smoltcp-phy", "nucleo-f429zi"] } +stm32f4xx-hal = { git = "https://github.com/stm32-rs/stm32f4xx-hal.git", features = ["rt", "stm32f429"] } +#stm32-eth = { version = "0.1.1", features = ["smoltcp-phy", "nucleo-f429zi"] } +stm32-eth = { git = "https://github.com/stm32-rs/stm32-eth.git", features = ["smoltcp-phy", "nucleo-f429zi"] } smoltcp = { version = "0.5.0", default-features = false, features = ["proto-ipv4", "proto-ipv6", "socket-icmp", "socket-udp", "socket-tcp", "log", "verbose"] } [features]