2022-06-24 18:22:08 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-autofmt"
|
2023-08-01 01:49:54 +00:00
|
|
|
version = { workspace = true }
|
2022-06-24 18:22:08 +00:00
|
|
|
edition = "2021"
|
2023-03-24 16:34:40 +00:00
|
|
|
authors = ["Jonathan Kelley"]
|
|
|
|
description = "Autofomatter for Dioxus RSX"
|
2023-07-20 17:00:07 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-03-24 16:34:40 +00:00
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
|
|
homepage = "https://dioxuslabs.com"
|
|
|
|
keywords = ["dom", "ui", "gui", "react"]
|
2022-06-24 18:22:08 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-19 19:29:11 +00:00
|
|
|
dioxus-rsx = { workspace = true }
|
2022-06-24 18:22:08 +00:00
|
|
|
proc-macro2 = { version = "1.0.6", features = ["span-locations"] }
|
|
|
|
quote = "1.0"
|
2023-07-20 16:06:12 +00:00
|
|
|
syn = { version = "2.0", features = ["full", "extra-traits", "visit"] }
|
2022-06-24 18:22:08 +00:00
|
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
2023-07-23 22:40:25 +00:00
|
|
|
prettyplease = { workspace = true }
|
2022-07-05 21:49:16 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
pretty_assertions = "1.2.1"
|