Cargo Features
[dependencies]
cudd-sys = { version = "1.0.0", default-features = false, features = ["build_cudd"] }
- default = build_cudd
-
The
build_cudd
feature is set by default whenevercudd-sys
is added without
somewhere in the dependency tree.default-features = false - build_cudd default
-
When disabled, the build script will not attempt to build CUDD and will just silently continue. This is necessary for building documentation on docs.rs without access to the internet. For other commands (aside from
cargo doc
), this will fail to produce a binary during linking.