[package]
edition = "2021"
name = "exprimo"
version = "0.7.0"
authors = ["joshua.tracey08@gmail.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Exprimo is a JavaScript expression evaluator written in Rust."
readme = "README.md"
keywords = [
"expression",
"eval",
"js-expression",
"js-eval",
"javascript",
]
license = "MIT"
repository = "https://github.com/josh-tracey/exprimo"
[lib]
name = "exprimo"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "payload"
path = "examples/payload.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "payload"
path = "tests/payload.rs"
[[test]]
name = "primitives"
path = "tests/primitives.rs"
[[test]]
name = "reliability"
path = "tests/reliability.rs"
[[test]]
name = "robustness"
path = "tests/robustness.rs"
[dependencies.anyhow]
version = "~1"
[dependencies.rslint_parser]
version = "=0.3.1"
[dependencies.serde_json]
version = "~1"
[dependencies.thiserror]
version = "~1"
[dependencies.tracing]
version = "0.1.41"