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
23 lines
496 B
TOML
23 lines
496 B
TOML
[package]
|
|
name = "maplibre-build-tools"
|
|
version = "0.1.0"
|
|
description = "A library with build tools for maplibre-rs"
|
|
readme = "../README.md"
|
|
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
keywords.workspace = true
|
|
authors.workspace = true
|
|
|
|
[features]
|
|
sqlite = ["rusqlite"]
|
|
|
|
[dependencies]
|
|
naga = { version = "*", features = ["wgsl-in"] }
|
|
walkdir = "2.3.2"
|
|
log = "0.4.17"
|
|
rusqlite = { version = "0.27.0", optional = true }
|
|
serde_json = "1.0.82"
|
|
flate2 = "1.0.24"
|