-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
43 lines (38 loc) · 1.13 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
[package]
name = "bbox-feature-server"
version = "0.6.2"
readme = "README.md"
description = "BBOX OGC API Features Service"
categories = ["science::geo"]
authors = ["Pirmin Kalberer <[email protected]>"]
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
homepage.workspace = true
[features]
html = ["bbox-core/html"]
[dependencies]
actix-web = { workspace = true }
async-trait = { workspace = true }
bbox-core = { path = "../bbox-core", version = "0.6.2" }
chrono = { workspace = true }
clap = { workspace = true }
dyn-clone = "1.0.6"
futures = { workspace = true }
geozero = { workspace = true, features = [ "with-gpkg", "with-postgis-sqlx" ] }
log = { workspace = true }
minijinja = { workspace = true }
once_cell = { workspace = true }
rust-embed = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_urlencoded = { workspace = true }
sqlx = { workspace = true }
thiserror = { workspace = true }
[dev-dependencies]
tokio = { workspace = true, features = ["full"] }
test-log = "0.2.14"
[[bin]]
name = "bbox-feature-server"
path = "src/main.rs"