[package]
edition = "2021"
name = "prejsx_math"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal math expression parser using only Rust's standard library"
readme = "README.md"
keywords = [
"math",
"parser",
"expression",
"arithmetic",
"no-deps",
]
categories = [
"parsing",
"mathematics",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Pjdur/prejsx_math"
resolver = "3"
[lib]
name = "prejsx_math"
path = "src/lib.rs"
[[test]]
name = "maths_test"
path = "tests/maths_test.rs"