slint/examples/maps/Cargo.toml
David Faure 29e289fbdf Move the workspace to rust edition 2024
Motivation: the git pre-commit hook is confused by the mix of 2021 and
2024 in the same workspace...

The only problem this raises is the std::env::set_var("LANGUAGE", lang) in
demos/printerdemo/rust/lib.rs, pre-existing but now explicitly marked as unsafe
because it actually is. Added a TODO there.
2025-12-09 12:11:04 +01:00

20 lines
429 B
TOML

# Copyright © SixtyFPS GmbH <info@slint.dev>
# SPDX-License-Identifier: MIT
[package]
name = "maps"
version = "1.15.0"
authors = ["Slint Developers <info@slint.dev>"]
edition.workspace = true
license = "MIT"
publish = false
[[bin]]
path = "main.rs"
name = "maps"
[dependencies]
slint = { path = "../../api/rs/slint" }
image = { workspace = true }
reqwest = { version = "0.12" }
tokio = { version = "1", features = ["full"] }