mirror of
https://github.com/maplibre/maplibre-rs.git
synced 2025-12-08 19:05:57 +00:00
* Upgrade toolchain to 1.65 * Set minimum Rust version * Cargo workspaces * Set version manually * Set a specific rust version so we an upgrade is triggered * Use debug for wgpu-info for speedier compile * Install specific rev of wgpu-info * Fix windows build
25 lines
599 B
TOML
25 lines
599 B
TOML
[package]
|
|
name = "maplibre-demo"
|
|
version = "0.1.0"
|
|
description = "Demo of maplibre-re"
|
|
readme = "../README.md"
|
|
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
keywords.workspace = true
|
|
authors.workspace = true
|
|
|
|
[features]
|
|
web-webgl = ["maplibre/web-webgl"]
|
|
trace = ["maplibre/trace"]
|
|
|
|
[dependencies]
|
|
env_logger = "0.9.0"
|
|
maplibre = { path = "../maplibre", version = "0.1.0", features = ["headless", "thread-safe-futures"] }
|
|
maplibre-winit = { path = "../maplibre-winit", version = "0.1.0" }
|
|
|
|
tile-grid = "0.3"
|
|
|
|
clap = { version = "3.2.12", features = ["derive"] }
|