-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 1.02 KB
/
Cargo.toml
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
27
28
29
30
31
32
33
34
35
[package]
name = "mapbox_maps"
version = "0.1.0"
authors = ["Aleksandr Ovchinnikov <[email protected]>"]
edition = "2018"
description = "Maps with Rust."
readme = "README.md"
repository = "https://https://github.com/mr1sunshine/mapbox-maps-rs"
license-file = "LICENSE"
keywords = ["mapbox", "maps"]
categories = ["multimedia"]
[dependencies]
eyre = "0.6.2"
reqwest = { version = "0.10.8", features = ["blocking", "gzip"] }
tokio = { version = "0.2.22", features = ["macros", "tcp", "dns", "io-util"] }
serde = { version = "1.0.117", features = ["derive"] }
serde_json = "1.0.59"
regex = "1.4.2"
lazy_static = "1.4.0"
enum_dispatch = "0.3.4"
css-colors = "1.0.1"
raster_color = { version = "0.2.0", package = "raster" }
scan_fmt = "0.2.5"
tilejson = {git = "https://github.com/mr1sunshine/tilejson-rs.git" }
winit = "0.23.0"
futures = "0.3.7"
wgpu = "0.6.0"
radix_fmt = "1.0.0"
assert_approx_eq = "1.1.0"
gl_matrix = "0.0.2"
nalgebra = "0.23.0"
num = "0.3.0"
async-trait = "0.1.41"
mvt = { git = "https://github.com/mr1sunshine/mvt-rs.git" }