-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (49 loc) · 1.31 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
49
50
51
52
53
54
55
[workspace.package]
version = "0.3.3"
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]
geo = "0.29.3"
geo-types = "0.7.15"
geojson = "0.24.1"
geozero = "0.14.0"
jiff = "0.2.0"
json_dotpath = "1.1.0"
jsonschema = { version = "0.29.0", default-features = false }
lazy_static = "1.5"
like = "0.3.1"
pest = "2.7"
pest_derive = { version = "2.7", features = ["grammar-extras"] }
pg_escape = "0.1.1"
serde = "1.0"
serde_derive = "1.0.217"
serde_json = { version = "1.0.138", features = ["preserve_order"] }
thiserror = "2.0"
unaccent = "0.1.0"
wkt = "0.12.0"
[dev-dependencies]
assert-json-diff = "2"
rstest = "0.24.0"
[workspace]
default-members = [".", "cli"]
members = ["cli", "python", "wasm"]
[workspace.dependencies]
clap = "4.5.28"