Skip to content

Commit

Permalink
Implement http pmtiles
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik committed Nov 30, 2023
1 parent 713a51b commit 634a395
Show file tree
Hide file tree
Showing 15 changed files with 720 additions and 252 deletions.
204 changes: 188 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,13 @@ martin-tile-utils = { path = "./martin-tile-utils", version = "0.1.0" }
mbtiles = { path = "./mbtiles", version = "0.8.0" }
num_cpus = "1"
pbf_font_tools = { version = "2.5.0", features = ["freetype"] }
pmtiles = { version = "0.5", features = ["mmap-async-tokio", "tilejson"] }
pmtiles = { version = "0.5", features = ["http-async", "mmap-async-tokio", "tilejson"] }
postgis = "0.9"
postgres = { version = "0.19", features = ["with-time-0_3", "with-uuid-1", "with-serde_json-1"] }
postgres-protocol = "0.6"
pretty_assertions = "1"
regex = "1"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls-native-roots"] }
rstest = "0.18"
rustls = { version = "0.21", features = ["dangerous_configuration"] }
rustls-native-certs = "0.6"
Expand All @@ -76,6 +77,7 @@ thiserror = "1"
tilejson = "0.4"
tokio = { version = "1", features = ["macros"] }
tokio-postgres-rustls = "0.10"
url = "2.4"

[profile.dev.package]
# See https://github.com/launchbadge/sqlx#compile-time-verification
Expand Down
Loading

0 comments on commit 634a395

Please sign in to comment.