mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 04:41:46 +03:00
843c21050d
Bumps [criterion](https://github.com/bheisler/criterion.rs) from 0.4.0 to 0.5.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md">criterion's changelog</a>.</em></p> <blockquote> <h2>[0.5.0] - 2023-05-23</h2> <h3>Changed</h3> <ul> <li>Replaced lazy_static dependency with once_cell</li> <li>Improved documentation of the <code>html_reports</code> feature</li> <li>Replaced atty dependency with is-terminal</li> <li>MSRV bumped to 1.64</li> <li>Upgraded clap dependency to v4</li> <li>Upgraded tempfile dependency to v3.5.0</li> </ul> <h3>Fixed</h3> <ul> <li>Quick mode (<code>--quick</code>) no longer outputs 1ms for measured times over 5 seconds</li> <li>Documentation updates</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="4a560cb8d8
"><code>4a560cb</code></a> release version 0.5 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/683">#683</a>)</li> <li><a href="3e2849ebf8
"><code>3e2849e</code></a> Post v0.4 CHANGELOG updates (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/680">#680</a>)</li> <li><a href="637010e50d
"><code>637010e</code></a> Bump clap to version 4 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/679">#679</a>)</li> <li><a href="39d7e2f954
"><code>39d7e2f</code></a> Update to tempfile 3.5 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/675">#675</a>)</li> <li><a href="8ab2752ccf
"><code>8ab2752</code></a> Fix typo in known_limitations.md (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/674">#674</a>)</li> <li><a href="a2112308ef
"><code>a211230</code></a> chore: replace atty with is-terminal (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/628">#628</a>)</li> <li><a href="a844eb226b
"><code>a844eb2</code></a> Bump MSRV to 1.60 for csv dependency (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/665">#665</a>)</li> <li><a href="2f53607378
"><code>2f53607</code></a> Use OR operator to specify multiple licenses (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/643">#643</a>)</li> <li><a href="86dcd7d323
"><code>86dcd7d</code></a> Fix bug where time over the maximum would be reported as 1ms in quick mode. (...</li> <li><a href="2942aee124
"><code>2942aee</code></a> Remove unnecessary <code>pub</code> from example code (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/657">#657</a>)</li> <li>Additional commits viewable in <a href="https://github.com/bheisler/criterion.rs/compare/0.4.0...0.5.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=criterion&package-manager=cargo&previous-version=0.4.0&new-version=0.5.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.3"
|
|
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.5", 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"]
|