Cargo Features
[dependencies]
fmul-to-int = { version = "1.0.0", default-features = false, features = ["std"] }
- default = std
-
The
std
feature is set by default wheneverfmul-to-int
is added without
somewhere in the dependency tree.default-features = false - std default
-
std
module support.Enable so that the
Overflow
error implementsstd::error::Error
.