slint/examples/carousel/rust/Cargo.toml
2025-04-30 13:27:50 +00:00

40 lines
1.2 KiB
TOML

# Copyright © SixtyFPS GmbH <info@slint.dev>
# SPDX-License-Identifier: MIT
[package]
name = "carousel"
version = "1.12.0"
authors = ["Slint Developers <info@slint.dev>"]
edition = "2021"
build = "build.rs"
publish = false
license = "MIT"
[[bin]]
path = "main.rs"
name = "carousel"
[dependencies]
slint = { path = "../../../api/rs/slint", default-features = false, features = ["compat-1-2"] }
mcu-board-support = { path = "../../mcu-board-support", optional = true }
[build-dependencies]
slint-build = { path = "../../../api/rs/build" }
[features]
default = ["slint/default"]
simulator = ["mcu-board-support", "slint/renderer-software", "slint/backend-winit", "slint/std"]
# Remove the `#wasm#` to uncomment the wasm build.
# This is commented out by default because we don't want to build it as a library by default
# The CI has a script that does sed "s/#wasm# //" to generate the wasm build.
#wasm# [lib]
#wasm# crate-type = ["cdylib"]
#wasm# path = "main.rs"
#wasm#
#wasm# [target.'cfg(target_arch = "wasm32")'.dependencies]
#wasm# wasm-bindgen = { version = "0.2" }
#wasm# web-sys = { version = "0.3", features=["console"] }
#wasm# console_error_panic_hook = "0.1.5"