Cargo Features
[dependencies]
os_display = { version = "0.1.3", default-features = false, features = ["native", "unix", "windows", "alloc", "std"] }
- default = alloc, native, std
-
These default features are set whenever
os_display
is added without
somewhere in the dependency tree.default-features = false - native default
-
Enable quoting for OsStr and in the style of the current platform
- unix
-
Enable bash/ksh-style quoting
- windows
-
Enable PowerShell-style quoting
- alloc default std
-
Use the relevant parts of the standard library
- std default = alloc