File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55
66## Unreleased
77
8+ ### Changed
9+
10+ - ` winapi ` is no longer required on unix; ` nix ` is no longer required on windows.
11+
812## [ 0.9.0] - 2020-07-01
913
1014### Added
Original file line number Diff line number Diff line change @@ -24,12 +24,10 @@ failure = "0.1.3"
2424futures-util = " 0.3.5"
2525log = " 0.4.6"
2626tokio = { version = " 0.2.21" , features = [" process" , " time" ] }
27- nix = " 0.11.0"
2827serde = { version = " 1.0" , features = [" derive" ] }
2928serde_json = " 1.0"
3029scopeguard = " 1.0.0"
3130lazy_static = " 1.0.0"
32- winapi = " 0.3"
3331tempfile = " 3.0.0"
3432reqwest = { version = " 0.10.4" , features = [" blocking" ] }
3533flate2 = " 1"
@@ -42,6 +40,12 @@ remove_dir_all = "0.5.2"
4240base64 = " 0.11.0"
4341getrandom = { version = " 0.1.12" , features = [" std" ] }
4442
43+ [target .'cfg(unix)' .dependencies ]
44+ nix = " 0.11.0"
45+
46+ [target .'cfg(windows)' .dependencies ]
47+ winapi = " 0.3"
48+
4549[dev-dependencies ]
4650env_logger = " 0.6.1"
4751tiny_http = " 0.7.0"
You can’t perform that action at this time.
0 commit comments