diff options
author | Akshay <[email protected]> | 2020-07-23 18:36:22 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2020-07-23 18:36:22 +0100 |
commit | d7c303dda4750a432478c94b3ed41bca1352d839 (patch) | |
tree | dccaba932e18a1414d91a67246fba3e0890d27f0 /Cargo.toml | |
parent | 2f47f50b0382491099391185c6a2702b1370b206 (diff) |
enable feature based compilation to support windowsv0.2.2-alpha
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -23,7 +23,10 @@ notify = "4.0" | |||
23 | [dependencies.cursive] | 23 | [dependencies.cursive] |
24 | version = "0.15" | 24 | version = "0.15" |
25 | default-features = false | 25 | default-features = false |
26 | features = ["termion-backend", "crossterm-backend"] | 26 | |
27 | [features] | ||
28 | unix = ["cursive/termion-backend"] | ||
29 | windows = ["cursive/crossterm-backend"] | ||
27 | 30 | ||
28 | [dependencies.chrono] | 31 | [dependencies.chrono] |
29 | version = "0.4" | 32 | version = "0.4" |