mirror of
https://github.com/maplibre/martin.git
synced 2024-12-18 20:31:54 +03:00
ae21194393
Some checks are pending
Documentation / Build Docs (push) Waiting to run
CI / Lint and Unit test (push) Waiting to run
CI / Build and test docker images (push) Waiting to run
CI / Build ${{ matrix.target }} (.exe, windows-latest, x86_64-pc-windows-msvc) (push) Waiting to run
CI / Build ${{ matrix.target }} (macos-13, x86_64-apple-darwin) (push) Waiting to run
CI / Build ${{ matrix.target }} (macos-latest, aarch64-apple-darwin) (push) Waiting to run
CI / Build ${{ matrix.target }} (ubuntu-latest, debian-x86_64) (push) Waiting to run
CI / Build ${{ matrix.target }} (ubuntu-latest, x86_64-unknown-linux-gnu) (push) Waiting to run
CI / Test AWS Lambda (push) Blocked by required conditions
CI / Test on ${{ matrix.os }} (.exe, windows-latest, x86_64-pc-windows-msvc) (push) Blocked by required conditions
CI / Test on ${{ matrix.os }} (macos-13, x86_64-apple-darwin) (push) Blocked by required conditions
CI / Test on ${{ matrix.os }} (ubuntu-latest, x86_64-unknown-linux-gnu) (push) Blocked by required conditions
CI / Test postgis:${{ matrix.img_ver }} sslmode=${{ matrix.sslmode }} (postgres -c ssl=on -c ssl_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem -c ssl_key_file=/etc/ssl/private/ssl-cert-snakeoil.key, 15-3.3, require) (push) Blocked by required conditions
CI / Test postgis:${{ matrix.img_ver }} sslmode=${{ matrix.sslmode }} (postgres, 11-3.0-alpine, disable) (push) Blocked by required conditions
CI / Test postgis:${{ matrix.img_ver }} sslmode=${{ matrix.sslmode }} (postgres, 14-3.3-alpine, disable) (push) Blocked by required conditions
CI / Package (push) Blocked by required conditions
CI / CI Finished (push) Blocked by required conditions
Demo / Demo (push) Waiting to run
Code coverage / grcov (push) Waiting to run
Bumps [rustls](https://github.com/rustls/rustls) from 0.23.19 to 0.23.20. <details> <summary>Commits</summary> <ul> <li><a href="b4628c7b61
"><code>b4628c7</code></a> rustls-post-quantum: revert version to 0.2.0</li> <li><a href="24d08f3ad5
"><code>24d08f3</code></a> rustls-post-quantum: adjust head doc</li> <li><a href="179592f249
"><code>179592f</code></a> verifybench.rs: nightly fmt</li> <li><a href="ef3fc21973
"><code>ef3fc21</code></a> nit: remove trailing space from doc comments</li> <li><a href="00a3ddb948
"><code>00a3ddb</code></a> fix rustls-provider-example hpke no-std support</li> <li><a href="2f74c3d3d0
"><code>2f74c3d</code></a> server: remove ClientHello constructor</li> <li><a href="3ba5167630
"><code>3ba5167</code></a> ci: adjust ech-client daily tests</li> <li><a href="f5aeb39cd9
"><code>f5aeb39</code></a> examples: use inner hostname in HTTPS DNS query</li> <li><a href="e232bcae61
"><code>e232bca</code></a> openssl-tests: install openssl from source</li> <li><a href="43cbebb80d
"><code>43cbebb</code></a> unbuffered: add regression tests for fragmented handshakes</li> <li>Additional commits viewable in <a href="https://github.com/rustls/rustls/compare/v/0.23.19...v/0.23.20">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rustls&package-manager=cargo&previous-version=0.23.19&new-version=0.23.20)](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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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>
114 lines
3.7 KiB
TOML
114 lines
3.7 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["martin", "martin-tile-utils", "mbtiles"]
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/maplibre/martin"
|
|
rust-version = "1.76"
|
|
readme = "README.md"
|
|
homepage = "https://martin.maplibre.org/"
|
|
|
|
[workspace.lints.rust]
|
|
unused_qualifications = "warn"
|
|
# Lints inheritance from workspace is not yet supported
|
|
# Crate mbtiles uses unsafe code, so we can't forbid it here
|
|
# unsafe_code = "forbid"
|
|
|
|
[workspace.lints.clippy]
|
|
pedantic = { level = "warn", priority = -1 }
|
|
derive_partial_eq_without_eq = "allow"
|
|
implicit_hasher = "allow"
|
|
missing_errors_doc = "allow"
|
|
missing_panics_doc = "allow"
|
|
module_name_repetitions = "allow"
|
|
|
|
[workspace.dependencies]
|
|
actix-cors = "0.7"
|
|
actix-http = "3"
|
|
actix-rt = "2"
|
|
actix-web = "4"
|
|
actix-web-static-files = "4"
|
|
anyhow = "1.0"
|
|
approx = "0.5.1"
|
|
async-trait = "0.1"
|
|
bit-set = "0.8"
|
|
brotli = ">=5, <8"
|
|
cargo-husky = { version = "1", features = ["user-hooks"], default-features = false }
|
|
clap = { version = "4", features = ["derive"] }
|
|
criterion = { version = "0.5", features = ["async_futures", "async_tokio", "html_reports"] }
|
|
ctor = "0.2"
|
|
deadpool-postgres = "0.14"
|
|
enum-display = "0.1"
|
|
env_logger = "0.11"
|
|
flate2 = "1"
|
|
flume = "0.11"
|
|
futures = "0.3"
|
|
indoc = "2"
|
|
insta = "1"
|
|
itertools = "0.13"
|
|
json-patch = "3.0"
|
|
lambda-web = { version = "0.2.1", features = ["actix4"] }
|
|
libsqlite3-sys = { version = ">=0.27", features = ["bundled"] }
|
|
log = "0.4"
|
|
martin-tile-utils = { path = "./martin-tile-utils", version = "0.5.1" }
|
|
mbtiles = { path = "./mbtiles", version = "0.11.1" }
|
|
md5 = "0.7.0"
|
|
moka = { version = "0.12", features = ["future"] }
|
|
num_cpus = "1"
|
|
pbf_font_tools = { version = "2.5.1", features = ["freetype"] }
|
|
pmtiles = { version = "0.11", features = ["http-async", "mmap-async-tokio", "tilejson", "reqwest-rustls-tls-native-roots"] }
|
|
postgis = "0.9"
|
|
postgres = { version = "0.19", features = ["with-time-0_3", "with-uuid-1", "with-serde_json-1"] }
|
|
postgres-protocol = "0.6"
|
|
pprof = { version = "0.13", features = ["flamegraph", "criterion"] }
|
|
pretty_assertions = "1"
|
|
regex = "1"
|
|
rstest = "0.23"
|
|
rustls = "0.23.20"
|
|
# ring feature does not require NASM windows executable, but works slower
|
|
#rustls = { version = "0.23", default-features = false, features = ["logging", "std", "tls12", "ring"] }
|
|
rustls-native-certs = "0.8"
|
|
rustls-pemfile = "2"
|
|
semver = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_with = "3"
|
|
serde_yaml = "0.9"
|
|
size_format = "1.0.2"
|
|
spreet = { version = "0.11", default-features = false }
|
|
sqlite-compressions = { version = "0.2.16", default-features = false, features = ["bsdiffraw", "gzip"] }
|
|
sqlite-hashes = { version = "0.7.6", default-features = false, features = ["md5", "aggregate", "hex"] }
|
|
sqlx = { version = "0.7", features = ["sqlite", "runtime-tokio"] }
|
|
static-files = "0.2"
|
|
subst = { version = "0.3", features = ["yaml"] }
|
|
testcontainers-modules = { version = "0.11.4", features = ["postgres"] }
|
|
thiserror = "2"
|
|
tile-grid = "0.6"
|
|
tilejson = "0.4"
|
|
tokio = { version = "1", features = ["macros"] }
|
|
tokio-postgres-rustls = "0.13"
|
|
url = "2.5"
|
|
xxhash-rust = { version = "0.8", features = ["xxh3"] }
|
|
|
|
[profile.dev.package]
|
|
# See https://github.com/launchbadge/sqlx#compile-time-verification
|
|
sqlx-macros.opt-level = 3
|
|
# See https://docs.rs/insta/latest/insta/#optional-faster-runs
|
|
insta.opt-level = 3
|
|
similar.opt-level = 3
|
|
|
|
#[patch.crates-io]
|
|
#enum-display = { path = "../enum-display" }
|
|
#pmtiles = { path = "../pmtiles-rs" }
|
|
#sqlite-hashes = { path = "../sqlite-hashes" }
|
|
#tilejson = { path = "../tilejson" }
|
|
#pmtiles = { git = "https://github.com/nyurik/pmtiles-rs", branch = "override" }
|
|
#tilejson = { git = "https://github.com/nyurik/tilejson", branch = "btreemap" }
|
|
|
|
[profile.release]
|
|
# Make release binaries a bit smaller
|
|
lto = true
|
|
codegen-units = 1
|