Cargo Features
[dependencies]
pixel_caster = { version = "1.1.0", default-features = false, features = ["pixels_string"] }
- default = pixels_string
-
The
pixels_string
feature is set by default wheneverpixel_caster
is added without
somewhere in the dependency tree.default-features = false - pixels_string default
-
Defines a feature named
pixels_string
that does not enable any other features, but enables the optional dependencies "image" and "lazy_static" crates. Enables the feature by setting it as defaultEnables image and lazy_static
Affects
pixel_caster::pixels_string
…