-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use built-in async recursion, requires Rust v0.77 (#35)
- Loading branch information
Showing
2 changed files
with
3 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "pmtiles" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
edition = "2021" | ||
authors = ["Luke Seelenbinder <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
description = "Implementation of the PMTiles v3 spec with multiple sync and async backends." | ||
repository = "https://github.com/stadiamaps/pmtiles-rs" | ||
keywords = ["pmtiles", "gis", "geo"] | ||
rust-version = "1.75.0" | ||
rust-version = "1.77.0" | ||
categories = ["science::geo"] | ||
|
||
[features] | ||
|
@@ -34,7 +34,6 @@ __async-s3-rustls = ["rust-s3?/tokio-rustls-tls"] | |
[dependencies] | ||
# TODO: determine how we want to handle compression in async & sync environments | ||
async-compression = { version = "0.4", features = ["gzip", "zstd", "brotli"] } | ||
async-recursion = "1" | ||
bytes = "1" | ||
fmmap = { version = "0.3", default-features = false, optional = true } | ||
hilbert_2d = "1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters