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
36 lines
552 B
TOML
36 lines
552 B
TOML
[workspace]
|
|
|
|
resolver = "2"
|
|
|
|
members = [
|
|
"maplibre",
|
|
"maplibre-winit",
|
|
"maplibre-build-tools",
|
|
"maplibre-demo",
|
|
|
|
"android",
|
|
"apple",
|
|
"web",
|
|
|
|
"benchmarks",
|
|
]
|
|
|
|
[workspace.package]
|
|
description = "Maps for Desktop, Mobile and Web"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.65"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["graphics"]
|
|
authors = ["Maximilian Ammann <max@maxammann.org>"]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 's'
|
|
panic = "abort"
|
|
strip = "debuginfo"
|
|
|
|
[profile.bench]
|
|
debug = true
|