mirror of
https://github.com/maplibre/martin.git
synced 2024-12-18 20:31:54 +03:00
15e60d14a6
Bumps [ctor](https://github.com/mmastrac/rust-ctor) from 0.1.26 to 0.2.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/mmastrac/rust-ctor/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ctor&package-manager=cargo&previous-version=0.1.26&new-version=0.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
79 lines
2.2 KiB
TOML
79 lines
2.2 KiB
TOML
[package]
|
|
name = "martin"
|
|
version = "0.8.1"
|
|
edition = "2021"
|
|
authors = ["Stepan Kuzmin <to.stepan.kuzmin@gmail.com>", "Yuri Astrakhan <YuriAstrakhan@gmail.com>", "MapLibre contributors"]
|
|
description = "Blazing fast and lightweight tile server with PostGIS, MBTiles, and PMTiles support"
|
|
repository = "https://github.com/maplibre/martin"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["maps", "tiles", "mbtiles", "pmtiles", "postgis"]
|
|
exclude = [
|
|
# Tests include a lot of data and other test files that are not needed for the users of the library
|
|
"/tests",
|
|
]
|
|
|
|
[lib]
|
|
name = "martin"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "martin"
|
|
path = "src/bin/main.rs"
|
|
|
|
[features]
|
|
default = []
|
|
ssl = ["openssl", "postgres-openssl"]
|
|
vendored-openssl = ["ssl", "openssl/vendored"]
|
|
|
|
[dependencies]
|
|
actix = "0.13"
|
|
actix-cors = "0.6"
|
|
actix-http = "3"
|
|
actix-rt = "2"
|
|
actix-web = "4"
|
|
async-trait = "0.1"
|
|
brotli = "3"
|
|
clap = { version = "4", features = ["derive"] }
|
|
deadpool-postgres = "0.10"
|
|
env_logger = "0.10"
|
|
flate2 = "1"
|
|
futures = "0.3"
|
|
itertools = "0.10"
|
|
log = "0.4"
|
|
martin-mbtiles = { path = "martin-mbtiles", version = "0.1.0" }
|
|
martin-tile-utils = { path = "martin-tile-utils", version = "0.1.0" }
|
|
num_cpus = "1"
|
|
openssl = { version = "0.10", optional = true }
|
|
pmtiles = { version = "0.2", features = ["mmap-async-tokio", "tilejson"] }
|
|
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"
|
|
regex = "1"
|
|
semver = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = { version = "1", features = ["preserve_order"] }
|
|
serde_yaml = "0.9"
|
|
subst = { version = "0.2", features = ["yaml"] }
|
|
thiserror = "1"
|
|
tilejson = "0.3"
|
|
|
|
[dev-dependencies]
|
|
cargo-husky = { version = "1", features = ["user-hooks"], default-features = false }
|
|
criterion = { version = "0.4", features = ["async_futures", "async_tokio", "html_reports"] }
|
|
ctor = "0.2"
|
|
indoc = "2"
|
|
#test-log = "0.2"
|
|
|
|
[[bench]]
|
|
name = "sources"
|
|
harness = false
|
|
|
|
[profile.dev.package.sqlx-macros]
|
|
# See https://github.com/launchbadge/sqlx#compile-time-verification
|
|
opt-level = 3
|
|
|
|
[workspace]
|
|
default-members = ["martin-tile-utils", "martin-mbtiles", "."]
|
|
members = ["martin-tile-utils", "martin-mbtiles"]
|