-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
63 lines (60 loc) · 1.66 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
61
62
63
[workspace]
members = [
"bbox-asset-server",
"bbox-core",
"bbox-feature-server",
"bbox-frontend",
"bbox-map-server",
"bbox-map-server/mock-fcgi-wms",
"bbox-processes-server",
"bbox-routing-server",
"bbox-server",
"bbox-tile-server",
]
default-members = ["bbox-server"]
resolver = "2"
[workspace.package]
edition = "2021"
rust-version = "1.65"
repository = "https://github.com/bbox-services/bbox"
homepage = "https://www.bbox.earth"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
actix-web = { version = "4.0.0", features = ["rustls"] }
async-stream = "0.3.4"
async-trait = "0.1.65"
awc = "3.0.0" # features = ["rustls"]
clap = { version = "4.2.1", features = ["derive"] }
chrono = "0.4"
futures = "0.3.21"
geozero = { version = "0.11.0" }
log = "0.4.17"
minijinja = { version = "2.2.0", features = ["loader"] }
num_cpus = "1.13.1"
once_cell = "1.12.0"
opentelemetry = { version = "0.18", default-features = false, features = [
"trace",
"metrics",
"rt-tokio",
] }
prometheus = { version = "0.13", default-features = false }
reqwest = { version = "0.11.11", default-features = false, features = [
"rustls-tls",
] }
rust-embed = { version = "6.8.1", features = ["compression"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.57"
serde_urlencoded = "0.7.1"
sqlx = { version = "0.7.0", default-features = false, features = [
"runtime-tokio-rustls",
"sqlite",
"postgres",
"chrono",
] }
tempfile = "3.8.1"
thiserror = "1.0.31"
tokio = { version = "1.19.2" }
[patch.crates-io]
#tile-grid = { path = "../tile-grid" }
#geozero = { path = "../geozero/geozero" }
#fast_paths = { path = "../fast_paths" }