@@ -4,7 +4,7 @@ name = "stm32-eth"
4
4
description = " Embedded Rust Ethernet driver for the STM32 MCU series"
5
5
license = " Apache-2.0"
6
6
authors = [" Astro <astro@spaceboyz.net>" ]
7
- version = " 0.2 .0"
7
+ version = " 0.3 .0"
8
8
keywords = [" ethernet" , " eth" , " stm32" , " stm32f4" , " stm32f7" ]
9
9
repository = " https://github.com/stm32-rs/stm32-eth"
10
10
documentation = " https://docs.rs/stm32-eth/"
@@ -18,16 +18,16 @@ maintenance = { status = "experimental" }
18
18
features = [" smi" , " smoltcp-phy" , " stm32f429" , " smoltcp/socket-tcp" ]
19
19
20
20
[dependencies ]
21
- volatile-register = " 0.2.1 "
22
- aligned = " 0.4.0 "
21
+ volatile-register = " 0.2"
22
+ aligned = " 0.4"
23
23
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 }
28
28
29
29
[dependencies .smoltcp ]
30
- version = " 0.8.0 "
30
+ version = " 0.8"
31
31
default-features = false
32
32
features = [" medium-ethernet" , " proto-ipv4" ]
33
33
optional = true
@@ -61,11 +61,11 @@ stm32f779 = ["stm32f7xx-hal/stm32f779", "device-selected", "fence"]
61
61
smoltcp-phy = [" smoltcp" ]
62
62
63
63
[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"
69
69
70
70
[[example ]]
71
71
name = " pktgen"
0 commit comments