Files
Graphite/libraries/math-parser/Cargo.toml
Firestar99 14d90195ad Remove unused dependencies from the Cargo.toml files via cargo shear (#2723)
* cargo shear ignore rules

* cargo shear

* cargo shear manual dependency removal

* cargo shear: ignore editor in proc-macros
2025-06-19 20:28:17 -07:00

23 lines
427 B
TOML

[package]
name = "math-parser"
version = "0.0.0"
rust-version = "1.85"
edition = "2024"
authors = ["Graphite Authors <contact@graphite.rs>"]
description = "Parser for Graphite style mathematics expressions"
license = "MIT OR Apache-2.0"
[dependencies]
pest = "2.7"
pest_derive = "2.7.11"
thiserror = "2.0"
lazy_static = "1.5"
num-complex = "0.4"
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "bench"
harness = false