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 whenever arithmetic-parser is added without default-features = false somewhere in the dependency tree.

std default

Enables support of types from std, such as the Error trait.

Enables std of anyhow

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