-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 814 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "qbin"
version = "0.2.0-dev"
authors = ["Anatoly Tsyplenkov <atsyplenkov@fastmail.com>"]
edition = "2024"
license = "MIT"
repository = "https://github.com/atsyplenkov/qbin"
homepage = "https://github.com/atsyplenkov/qbin"
documentation = "https://docs.rs/qbin"
readme = "README.md"
description = "Encoding and decoding geographical coordinates to and from Quadbin, a hierarchical geospatial indexing system for square cells in Web Mercator projection developed by Carto. An improved version of Microsoft's Bing Maps Tile System, aka Quadkey."
keywords = ["quadbin", "quadkey", "spatial", "spatial-index"]
categories = ["science::geo"]
[dependencies]
geo = "0.32.0"
[dev-dependencies]
approx = "0.5.1"
criterion = "0.8.2"
geohash = "0.13.1"
h3o = "0.9.4"
[[bench]]
name = "main"
harness = false