Cargo Features

[dependencies]
intaglio = { version = "1.9.1", default-features = false, features = ["bytes", "cstr", "osstr", "path"] }
default = bytes, cstr, osstr, path

All features are enabled by default.

bytes default

bytes feature enables an additional symbol table implementation for interning byte strings (Vec<u8> and &'static [u8]).

Affects intaglio::bytes

cstr default

cstr feature enables an additional symbol table implementation for interning C strings (CString and &'static CStr).

Affects intaglio::cstr

osstr default

osstr feature enables an additional symbol table implementation for interning platform strings (OsString and &'static OsStr).

Affects intaglio::osstr

path default

path feature enables an additional symbol table implementation for interning path strings (PathBuf and &'static Path).

Affects intaglio::path