martin/Cargo.toml

62 lines
1.5 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"
2022-11-19 19:20:01 +03:00
version = "0.6.0"
edition = "2021"
authors = ["Stepan Kuzmin <to.stepan.kuzmin@gmail.com>", "Yuri Astrakhan <YuriAstrakhan@gmail.com>", "MapLibre contributors"]
description = "Blazing fast and lightweight PostGIS vector tile 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
[features]
ssl = ["openssl", "postgres-openssl"]
vendored-openssl = ["ssl", "openssl/vendored"]
2017-09-30 13:55:44 +03:00
[dependencies]
actix = "0.13"
actix-cors = "0.6"
actix-http = "3"
actix-rt = "2"
actix-web = "4"
async-trait = "0.1"
bb8 = "0.8"
bb8-postgres = "0.8"
clap = { version = "4", features = ["derive"] }
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"
openssl = { version = "0.10", optional = true }
postgis = "0.9"
postgres = { version = "0.19", features = ["with-time-0_3", "with-uuid-1", "with-serde_json-1"] }
postgres-openssl = { version = "0.5", optional = true }
postgres-protocol = "0.6"
semver = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
tilejson = "0.3"
[dev-dependencies]
indoc = "1"
2021-07-23 11:04:34 +03:00
[dev-dependencies.criterion]
version = "0.4.0"
2021-07-23 11:04:34 +03:00
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