File tree 2 files changed +10
-2
lines changed 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16
16
- When passed a global command with the same name as a file in the current directory,
17
17
Rustwide will now execute the global command instead of the file.
18
18
19
+ ### Changed
20
+
21
+ - ` winapi ` is no longer required on unix; ` nix ` is no longer required on windows.
22
+
19
23
## [ 0.8.0] - 2020-06-05
20
24
21
25
### Added
Original file line number Diff line number Diff line change @@ -24,12 +24,10 @@ failure = "0.1.3"
24
24
futures-util = " 0.3.5"
25
25
log = " 0.4.6"
26
26
tokio = { version = " 0.2.21" , features = [" process" , " time" ] }
27
- nix = " 0.11.0"
28
27
serde = { version = " 1.0" , features = [" derive" ] }
29
28
serde_json = " 1.0"
30
29
scopeguard = " 1.0.0"
31
30
lazy_static = " 1.0.0"
32
- winapi = " 0.3"
33
31
tempfile = " 3.0.0"
34
32
reqwest = { version = " 0.10.4" , features = [" blocking" ] }
35
33
flate2 = " 1"
@@ -42,6 +40,12 @@ remove_dir_all = "0.5.2"
42
40
base64 = " 0.11.0"
43
41
getrandom = { version = " 0.1.12" , features = [" std" ] }
44
42
43
+ [target .'cfg(unix)' .dependencies ]
44
+ nix = " 0.11.0"
45
+
46
+ [target .'cfg(windows)' .dependencies ]
47
+ winapi = " 0.3"
48
+
45
49
[dev-dependencies ]
46
50
env_logger = " 0.6.1"
47
51
tiny_http = " 0.7.0"
You can’t perform that action at this time.
0 commit comments