Cargo Features
[dependencies]
printimg = { version = "0.5.6", default-features = false, features = ["opencv-32", "image", "libc", "opencv"] }
- default = libc, opencv
-
These default features are set whenever
printimg
is added without
somewhere in the dependency tree.default-features = false - opencv-32
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.
- image implicit feature
-
Enables image ^0.23.14
image:
Imaging library. Provides basic image processing and encoders/decoders for common image formats.
- libc default
- opencv default
-
Enables opencv ^0.92.0
Affects
cli::Opt.verbose
,resize::Resizer.resize_img
…