[package]
edition = "2021"
rust-version = "1.89"
name = "maplibre-expr"
version = "0.1.0"
authors = ["Re:Earth and contributors"]
build = false
exclude = [
"/.github",
"/tests/fixtures",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust parser and evaluator for MapLibre GL style expressions"
homepage = "https://github.com/reearth/maplibre-expr-rs"
readme = "README.md"
keywords = [
"maplibre",
"mapbox",
"expression",
"style",
"gis",
]
categories = [
"parsing",
"graphics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/reearth/maplibre-expr-rs"
[lib]
name = "maplibre_expr"
path = "src/lib.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[[test]]
name = "ext"
path = "tests/ext.rs"
[[test]]
name = "spec"
path = "tests/spec.rs"
harness = false
[dependencies.icu]
version = "2"
features = ["compiled_data"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.libtest-mimic]
version = "0.8"