[package]
edition = "2021"
name = "iced-markup"
version = "0.1.0-beta"
authors = ["Nayan Das <https://github.com/nayandas69>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A declarative markup DSL for building Iced GUI applications in Rust"
homepage = "https://github.com/nayandas69/iced-markup"
readme = "README.md"
keywords = [
"iced",
"gui",
"markup",
"dsl",
"proc-macro",
]
categories = [
"gui",
"development-tools::procedural-macro-helpers",
]
license = "MIT"
repository = "https://github.com/nayandas69/iced-markup"
[lib]
name = "iced_markup"
path = "src/lib.rs"
proc-macro = true
[[example]]
name = "counter"
path = "examples/counter.rs"
[[test]]
name = "advanced_test"
path = "tests/advanced_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.proc-macro-error2]
version = "2"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"parsing",
"extra-traits",
]
[dev-dependencies.iced]
version = "0.13"
[dev-dependencies.insta]
version = "1"
[dev-dependencies.prettyplease]
version = "0.2"
[lints.clippy]
all = "warn"
nursery = "warn"
pedantic = "warn"
perf = "warn"