[package]
edition = "2024"
name = "ogc-cql2"
version = "0.5.1"
authors = ["Raif S. Naffah <raif@mailbox.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OGC CQL2 Text + JSON Encoding parser and interpreter in Rust"
readme = "README.md"
keywords = [
"OGC",
"CQL2",
"PEG",
"JSON",
"Interpreter",
]
categories = [
"data-structures",
"encoding",
"parser-implementations",
"science::geo",
]
license = "Apache-2.0"
repository = "https://github.com/raif-s-naffah/ogc-cql2"
[lib]
name = "ogc_cql2"
path = "src/lib.rs"
[[bin]]
name = "repl"
path = "src/bin/repl.rs"
[[test]]
name = "grammar"
path = "tests/grammar.rs"
[[test]]
name = "json"
path = "tests/json.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[test]]
name = "text"
path = "tests/text.rs"
[[bench]]
name = "common"
path = "benches/common.rs"
[[bench]]
name = "eval"
path = "benches/eval.rs"
harness = false
[[bench]]
name = "parse"
path = "benches/parse.rs"
harness = false
[[bench]]
name = "sql"
path = "benches/sql.rs"
harness = false
[dependencies.async-trait]
version = "0.1.89"
[dependencies.csv]
version = "1.4.0"
[dependencies.dotenvy]
version = "0.15.7"
[dependencies.futures]
version = "0.3.31"
[dependencies.geos]
version = "10.0.0"
features = ["v3_11_0"]
[dependencies.jiff]
version = "0.2.19"
features = ["serde"]
[dependencies.paste]
version = "1.0.15"
[dependencies.peg]
version = "0.8.5"
[dependencies.proj]
version = "0.31.0"
default-features = false
[dependencies.regress]
version = "0.10.5"
features = ["prohibit-unsafe"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.serde_with]
version = "3.16.1"
features = ["macros"]
[dependencies.sqlx]
version = "0.9.0-alpha.1"
features = [
"runtime-tokio",
"sqlite",
"postgres",
"derive",
"time",
]
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.49.0"
features = ["full"]
[dependencies.tracing]
version = "0.1.44"
[dependencies.unicase]
version = "2.9.0"
[dependencies.unicode-normalization]
version = "0.1.25"
[dev-dependencies.approx]
version = "0.5.1"
[dev-dependencies.criterion]
version = "0.8.2"
features = [
"async_tokio",
"html_reports",
]
[dev-dependencies.rand]
version = "0.9.2"
[dev-dependencies.tracing-test]
version = "0.2.5"
features = ["no-env-filter"]
[dev-dependencies.walkdir]
version = "2.5.0"