Cargo Features

[dependencies]
arithmetic-parser = { version = "0.3.0", default-features = false, features = ["std", "num-complex", "num-bigint"] }
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, and propagates to dependencies.

Enables lexical and std of nom ^6.0.0 and std of anyhow

Public dependencies (present in the public API).

Features from optional dependencies

num-complex implicit feature

Enables num-complex

num-complex:

Complex numbers implementation for Rust

num-bigint implicit feature

Enables num-bigint

num-bigint:

Big integer implementation for Rust