martin/Cargo.toml

54 lines
1.2 KiB
TOML
Raw Normal View History

2017-09-30 13:55:44 +03:00
[package]
2018-01-16 15:55:05 +03:00
name = "martin"
2021-10-18 16:29:51 +03:00
version = "1.0.0-alpha.0"
edition = "2021"
authors = ["Stepan Kuzmin <to.stepan.kuzmin@gmail.com>", "MapLibre contributors"]
2021-10-08 17:24:16 +03:00
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"
2017-09-30 13:55:44 +03:00
[dependencies]
actix = "0.10"
2021-10-09 15:33:26 +03:00
actix-cors = "0.5"
actix-rt = "1"
actix-web = "3"
2018-10-10 19:13:53 +03:00
docopt = "1"
2021-07-16 16:08:46 +03:00
env_logger = "0.9"
itertools = "0.10"
2018-03-26 14:12:43 +03:00
log = "0.4"
num_cpus = "1.13"
openssl = "0.10.41"
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.2"
2018-03-26 14:12:43 +03:00
r2d2 = "0.8"
r2d2_postgres = "0.18"
semver = "1.0"
2017-12-17 13:51:07 +03:00
serde = "1.0"
serde_derive = "1.0"
2018-03-28 19:15:00 +03:00
serde_json = "1.0"
serde_yaml = "0.9"
tilejson = "0.3.1"
2021-07-23 11:04:34 +03:00
[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]]
2021-07-23 11:04:34 +03:00
name = "sources"
harness = false