mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-04 05:18:19 +00:00

* Update to rust 2024 edition * Fixes * Clean up imports * Cargo fmt again --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
23 lines
454 B
TOML
23 lines
454 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"
|
|
log = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5"
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|