Cargo Features
[dependencies]
evaluatorrs = { version = "0.0.1", default-features = false, features = ["std", "libm"] }
- default = std
-
The
std
feature is set by default wheneverevaluatorrs
is added without
somewhere in the dependency tree.default-features = false - std default
-
Provide impls for common standard library types like Vec<T> and HashMap<K, V>.
Requires a dependency on the Rust standard library. - libm
-
Provide ability to calculate complex mathematical functions without std lib.
Enables libm