-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
38 lines (35 loc) · 1004 Bytes
/
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
36
37
38
[workspace]
members = [
".", # Include the library itself
"examples/*" # Include all projects in the examples directory
]
[package]
name = "mapboxgl"
version = "0.6.0"
edition = "2021"
description = "Unofficial Rust binding for mapbox-gl-js"
readme = "README.md"
homepage = "https://github.com/yukinarit/mapbox-gl-rs"
repository = "https://github.com/yukinarit/mapbox-gl-rs"
license = "MIT"
keywords = ["map", "mapbox", "mapbox-gl", "vector-tiles", "wasm"]
categories = ["wasm", "web-programming"]
exclude = [
"node_modules",
"package.json",
"package-lock.json",
]
[dependencies]
wasm-bindgen = "0.2"
web-sys = { version = "0.3", features = ["console", "MouseEvent", "TouchEvent", "WheelEvent", "DragEvent", "HtmlElement"] }
js-sys = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.6.5"
serde_json = "1"
thiserror = "1"
log = "0.4.6"
geojson = "0.24"
enclose = "1"
uuid = { version = "1", features = ["v4", "js"] }
[dev-dependencies]
anyhow = "1"