[package]
edition = "2024"
rust-version = "1.85"
name = "faststep"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "UIKit-inspired embedded UI framework built on embedded-graphics"
homepage = "https://github.com/bazyli/faststep"
documentation = "https://docs.rs/faststep"
readme = "README.md"
keywords = [
"embedded",
"ui",
"touch",
"graphics",
"esp32",
]
categories = [
"embedded",
"gui",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/bazyli/faststep"
[package.metadata.docs.rs]
all-features = true
cargo-args = [
"-Zunstable-options",
"-Zrustdoc-scrape-examples",
]
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "faststep"
path = "src/lib.rs"
doc-scrape-examples = true
[[example]]
name = "alerts"
path = "examples/alerts.rs"
[[example]]
name = "buttons"
path = "examples/buttons.rs"
[[example]]
name = "containers"
path = "examples/containers.rs"
[[example]]
name = "root_delegate"
path = "examples/root_delegate.rs"
[[example]]
name = "runtime_shell"
path = "examples/runtime_shell.rs"
[[example]]
name = "scroll_and_list"
path = "examples/scroll_and_list.rs"
[[example]]
name = "text_and_image"
path = "examples/text_and_image.rs"
[[example]]
name = "uikit_root"
path = "examples/uikit_root.rs"
[[test]]
name = "foundation"
path = "tests/foundation.rs"
[[test]]
name = "ui_app"
path = "tests/ui_app.rs"
[[test]]
name = "views"
path = "tests/views.rs"
[dependencies.embedded-graphics]
version = "0.8.2"
default-features = false
[dependencies.heapless]
version = "0.8.0"
default-features = false