Cargo Features
[dependencies]
arithmetic-parser = { version = "0.4.0-beta.1", default-features = false, features = ["std", "num-bigint", "num-complex"] }
- default = std
-
The
std
feature is set by default wheneverarithmetic-parser
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables support of types from
std
, such as theError
trait.Public dependencies (present in the public API).
Features from optional dependencies
- num-bigint implicit feature
-
Enables num-bigint
num-bigint:
Big integer implementation for Rust
- num-complex implicit feature
-
Enables num-complex
num-complex:
Complex numbers implementation for Rust