Skip to content

Commit d0d393a

Browse files
committed
Don't specify patch in dependencies; Update crate version
1 parent 34cf14a commit d0d393a

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "stm32-eth"
44
description = "Embedded Rust Ethernet driver for the STM32 MCU series"
55
license = "Apache-2.0"
66
authors = ["Astro <astro@spaceboyz.net>"]
7-
version = "0.2.0"
7+
version = "0.3.0"
88
keywords = ["ethernet", "eth", "stm32", "stm32f4", "stm32f7"]
99
repository = "https://github.com/stm32-rs/stm32-eth"
1010
documentation = "https://docs.rs/stm32-eth/"
@@ -18,16 +18,16 @@ maintenance = { status = "experimental" }
1818
features = ["smi", "smoltcp-phy", "stm32f429", "smoltcp/socket-tcp"]
1919

2020
[dependencies]
21-
volatile-register = "0.2.1"
22-
aligned = "0.4.0"
21+
volatile-register = "0.2"
22+
aligned = "0.4"
2323
stm32f7xx-hal = { git = "https://github.com/stm32-rs/stm32f7xx-hal", rev = "7099b07", optional = true }
24-
stm32f4xx-hal = { version = "0.12.0", optional = true }
25-
stm32f1xx-hal = { version = "0.9.0", optional = true }
26-
cortex-m = "0.7.4"
27-
log = { version = "0.4.15", optional = true }
24+
stm32f4xx-hal = { version = "0.12", optional = true }
25+
stm32f1xx-hal = { version = "0.9", optional = true }
26+
cortex-m = "0.7"
27+
log = { version = "0.4", optional = true }
2828

2929
[dependencies.smoltcp]
30-
version = "0.8.0"
30+
version = "0.8"
3131
default-features = false
3232
features = ["medium-ethernet", "proto-ipv4"]
3333
optional = true
@@ -61,11 +61,11 @@ stm32f779 = ["stm32f7xx-hal/stm32f779", "device-selected", "fence"]
6161
smoltcp-phy = ["smoltcp"]
6262

6363
[dev-dependencies]
64-
cortex-m = "0.7.4"
65-
cortex-m-rt = "0.7.1"
66-
panic-itm = "0.4.2"
67-
cortex-m-semihosting = "0.3.7"
68-
fugit = "0.3.5"
64+
cortex-m = "0.7"
65+
cortex-m-rt = "0.7"
66+
panic-itm = "0.4"
67+
cortex-m-semihosting = "0.3"
68+
fugit = "0.3"
6969

7070
[[example]]
7171
name = "pktgen"

0 commit comments

Comments
 (0)