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 default-features = false somewhere in the dependency tree.

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