@@ -21,7 +21,7 @@ rust-version = "1.63"
21
21
os_pipe = { version = " 1.0.0" , features = [" io_safety" ], optional = true }
22
22
23
23
# Optionally depend on async-std just to provide impls for its types.
24
- async-std = { version = " 1.12.0 " , optional = true }
24
+ async-std = { version = " >= 1.12, <=1.13 " , optional = true }
25
25
# Optionally depend on tokio to implement traits for its types.
26
26
tokio = { version = " 1.6.0" , features = [" io-std" , " fs" , " net" , " process" ], optional = true }
27
27
# Optionally depend on socket2 to implement traits for its types.
@@ -30,13 +30,13 @@ socket2 = { version = "0.5.0", optional = true }
30
30
mio = { version = " 0.8.0" , features = [" net" , " os-ext" ], optional = true }
31
31
32
32
[target .'cfg(target_os = "hermit")' .dependencies ]
33
- hermit-abi = { version = " 0.3" , optional = true }
33
+ hermit-abi = { version = " >= 0.3, <=0.4 " , optional = true }
34
34
35
35
[target .'cfg(not(windows))' .dependencies ]
36
36
libc = { version = " 0.2.96" , optional = true }
37
37
38
38
[target .'cfg(windows)' .dependencies .windows-sys ]
39
- version = " 0.52.0 "
39
+ version = " >= 0.52, <=0.59 "
40
40
optional = true
41
41
features = [
42
42
" Win32_Foundation" ,
0 commit comments