[package]
edition = "2024"
rust-version = "1.85"
name = "zest-simulator"
version = "0.1.1"
authors = ["Bryan H. <bhh32@protonmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Desktop simulator Platform for the zest GUI framework via embedded-graphics-simulator + SDL2."
documentation = "https://docs.rs/zest-simulator"
readme = "README.md"
license = "GPL-3.0-or-later"
repository = "https://github.com/bhh32/zest"
resolver = "2"
[lib]
name = "zest_simulator"
path = "src/lib.rs"
[dependencies.embassy-executor]
version = "0.7"
features = [
"arch-std",
"executor-thread",
]
[dependencies.embassy-time]
version = "0.4"
features = [
"std",
"generic-queue-8",
]
[dependencies.embedded-graphics]
version = "0.8"
default-features = false
[dependencies.embedded-graphics-simulator]
version = "0.8"
[dependencies.tiny-skia]
version = "0.11"
[dependencies.zest-core]
version = "0.1.1"
[lints.clippy]
missing_errors_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"