forked from maplibre/martin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (47 loc) · 1.19 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
[package]
name = "martin"
version = "1.0.0-alpha.0"
edition = "2021"
authors = ["Stepan Kuzmin <[email protected]>", "MapLibre contributors"]
description = "Blazing fast and lightweight PostGIS vector tiles server"
repository = "https://github.com/maplibre/martin/"
license = "MIT OR Apache-2.0"
[lib]
name = "martin"
path = "src/lib.rs"
[[bin]]
name = "martin"
path = "src/bin/main.rs"
[dependencies]
actix = "0.10"
actix-cors = "0.5"
actix-rt = "1"
actix-web = "3"
docopt = "1"
env_logger = "0.9"
itertools = "0.10"
log = "0.4"
num_cpus = "1.13"
openssl = "0.10.60"
postgis = "0.9.0"
postgres = { version = "0.19.1", features = ["with-time-0_2", "with-uuid-0_8", "with-serde_json-1"] }
postgres-openssl = "0.5.0"
postgres-protocol = "0.6.6"
r2d2 = "0.8"
r2d2_postgres = "0.18"
semver = "1.0"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
serde_yaml = "0.8"
tilejson = "0.3.4"
[dev-dependencies.criterion]
version = "0.3.4"
features = ["async_futures", "async_tokio", "html_reports"]
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["run-for-all", "prepush-hook", "run-cargo-fmt", "run-cargo-clippy", "run-cargo-test"]
[[bench]]
name = "sources"
harness = false