-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (43 loc) · 1.14 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[workspace.package]
version = "0.3.1"
authors = [
"David Bitner <[email protected]>",
"Pete Gadomski <[email protected]>",
]
edition = "2021"
documentation = "https://docs.rs/cql2"
repository = "https://github.com/developmentseed/cql2-rs"
license = "MIT"
[package]
name = "cql2"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
description = "Parse, validate, and convert Common Query Language (CQL2) text and JSON"
documentation = { workspace = true }
readme = "README.md"
homepage = "https://github.com/developmentseed/cql2-rs"
repository = { workspace = true }
license = { workspace = true }
keywords = ["cql2"]
[dependencies]
boon = "0.6.0"
geo-types = "0.7.13"
geojson = "0.24.1"
geozero = "0.14.0"
lazy_static = "1.5"
pest = "2.7"
pest_derive = { version = "2.7", features = ["grammar-extras"] }
pg_escape = "0.1.1"
serde = "1.0"
serde_derive = "1.0"
serde_json = { version = "1.0", features = ["preserve_order"] }
thiserror = "2.0"
[dev-dependencies]
assert-json-diff = "2"
rstest = "0.23"
[workspace]
default-members = [".", "cli"]
members = ["cli", "python"]
[workspace.dependencies]
clap = "4.5"