mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-22 20:23:09 +00:00
29 lines
813 B
TOML
29 lines
813 B
TOML
[package]
|
|
name = "dioxus-autofmt"
|
|
version = { workspace = true }
|
|
edition = "2021"
|
|
authors = ["Jonathan Kelley"]
|
|
description = "Autofomatter for Dioxus RSX"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
homepage = "https://dioxuslabs.com"
|
|
keywords = ["web", "desktop", "mobile", "gui", "wasm"]
|
|
|
|
[dependencies]
|
|
dioxus-rsx = { workspace = true }
|
|
proc-macro2 = { version = "1.0.6", features = ["span-locations"] }
|
|
quote = { workspace = true }
|
|
syn = { workspace = true, features = [
|
|
"full",
|
|
"extra-traits",
|
|
"visit",
|
|
"visit-mut",
|
|
] }
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
prettyplease = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.2.1"
|
|
|
|
[package.metadata.docs.rs]
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|