-
Notifications
You must be signed in to change notification settings - Fork 38
/
Cargo.toml
65 lines (56 loc) · 1.17 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
64
65
[package]
name = "hecate"
version = "0.82.2"
edition = "2018"
authors = ["ingalls <ingalls@protonmail.com>"]
license = "MIT"
description = "OpenStreetMap Inspired Data Storage Backend Focused on Performance and GeoJSON Interchange"
homepage = "https://github.com/mapbox/Hecate"
repository = "https://github.com/mapbox/Hecate"
readme = "README.md"
categories = ["database"]
[dependencies]
reqwest = "0.9.20"
tilecover = "1.1.1"
crossbeam = "0.7"
valico = "3.1"
rand = "0.7"
postgis = "0.6.0"
protobuf = "1.5"
base64 = "0.11"
futures = "0.1.29"
bytes = "0.4"
actix-threadpool = "0.1.2"
actix-web = "1.0.8"
actix-files = "0.1.7"
actix-http = "0.2.11"
actix-service = "0.4.2"
geojson = "0.16.0"
quick-xml = "0.17.0"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
r2d2 = "0.8.6"
r2d2_postgres = "0.14.0"
env_logger = "0.7"
hmac = "0.7"
url = "2.1"
sha2 = "0.8.0"
[dependencies.geo]
version = "0.12"
features = ["postgis-integration"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.postgres]
version = "0.15.2"
features = [
"with-serde_json",
"with-chrono"
]
[dependencies.clap]
features = ["yaml"]
version = "2.33.0"
[[bin]]
name = "hecate"
doc = false