diff options
author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2023-04-25 07:56:25 +0200 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2023-04-25 07:56:57 +0200 |
commit | 7ef48ad5f326dcdd43f9b5481bf66bfce7d65074 (patch) | |
tree | 75cd8dd3b6afdd61eaeeaefb73e24f196072770a | |
parent | d0e85fec1586a8937928472e361837ef21e40b14 (diff) |
share `cargo` invocation to help install on more platforms (#157)
-rw-r--r-- | README.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -56,8 +56,11 @@ For _Unix_… ``` cargo install dua-cli -# And if you don't need a terminal user interface +# And if you don't need a terminal user interface (most compatible) cargo install dua-cli --no-default-features + +# Compiles on most platforms, with terminal user interface +cargo install dua-cli --no-default-features --features tui-crossplatform ``` For _Windows_, nightly features are currently required. |