mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
24 lines
827 B
TOML
24 lines
827 B
TOML
[package]
|
|
name = "dioxus-autofmt"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
authors = ["Jonathan Kelley"]
|
|
description = "Autofomatter for Dioxus RSX"
|
|
license = "MIT/Apache-2.0"
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
homepage = "https://dioxuslabs.com"
|
|
keywords = ["dom", "ui", "gui", "react"]
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dioxus-rsx = { workspace = true }
|
|
proc-macro2 = { version = "1.0.6", features = ["span-locations"] }
|
|
quote = "1.0"
|
|
syn = { version = "2.0", features = ["full", "extra-traits"] }
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
prettyplease = { package = "prettier-please", git = "https://github.com/Demonthos/prettier-please", features = [
|
|
"verbatim",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.2.1"
|