-
Notifications
You must be signed in to change notification settings - Fork 38
/
Cargo.toml
60 lines (56 loc) · 1.9 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
56
57
58
59
60
[workspace]
# Make sure this list matches the "Test Doc Build" section in .github/workflows/ci.yml
members = ["geozero", "geozero-cli", "geozero-bench"]
default-members = ["geozero", "geozero-cli"]
resolver = "2"
[workspace.package]
version = "0.14.0"
authors = ["Pirmin Kalberer <[email protected]>", "Yuri Astrakhan <[email protected]>"]
edition = "2021"
homepage = "https://github.com/georust/geozero"
repository = "https://github.com/georust/geozero"
readme = "README.md"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
# Used in geozero-cli and geozero-bench
# geozero version must be in sync with flatgeobuf version!
geozero = { version = "0.14.0", default-features = false }
# flatgeobuf had a breaking (!) change released in 4.5.0, so we'll pin until we adapt to the new version.
flatgeobuf = ">=4.4.0,<4.5.0"
async-trait = "0.1"
byteorder = { version = "1.4.3", default-features = false }
bytes = "1.4"
clap = { version = "4.3", features = ["derive"] }
criterion = "0.5.1"
csv = "1.2.2"
dbase = "0.4"
diesel = { version = "2.2.3", default-features = false, features = ["postgres"] }
dup-indexer = "0.3"
env_logger = "0.10.0"
futures-util = "0.3.28"
gdal = { version = "0.16", default-features = false }
gdal-sys = "0.9"
geo = "0.26.0"
geo-types = { version = "0.7.11", default-features = false }
geojson = { version = "0.24.1", default-features = false }
geos = "9.0"
gpx = { version = "0.9", default-features = false }
hex = "0.4"
kdbush = "0.2"
log = "0.4.19"
lyon = "1.0.1"
postgis = "0.9.0"
postgres = "0.19"
postgres-types = "0.2"
prost = "0.11.9"
# NOTICE: When updating prost-build, remove geozero/src/mvt/vector_tile.rs to force a rebuild
prost-build = "0.11.9"
scroll = "0.11"
seek_bufread = "1.2"
serde_json = "1.0.104"
sqlx = { version = "0.8", default-features = false }
thiserror = "1.0"
tokio = { version = "1.30.0", default-features = false }
wkt = "0.11"
[patch.crates-io]
#geozero = { path = "./geozero" }