mirror of
https://github.com/maplibre/maplibre-rs.git
synced 2025-12-08 19:05:57 +00:00
Refactored xcode project into a framework. * This framework can be bundled into an xcframework * The xcframework can be added to a swift package Deployment happens through #21
27 lines
298 B
TOML
27 lines
298 B
TOML
[workspace]
|
|
|
|
resolver = "2"
|
|
|
|
members = [
|
|
"maplibre",
|
|
"maplibre-build-tools",
|
|
"maplibre-demo",
|
|
|
|
"android",
|
|
"apple",
|
|
"web",
|
|
|
|
"benchmarks",
|
|
]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 's'
|
|
panic = "abort"
|
|
|
|
strip = "debuginfo"
|
|
|
|
[profile.bench]
|
|
debug = true
|