dioxus/packages/rsx-rosetta/Cargo.toml

30 lines
818 B
TOML
Raw Normal View History

[package]
name = "rsx-rosetta"
2023-03-24 16:39:52 +00:00
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"
documentation = "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]
2023-03-24 16:39:52 +00:00
dioxus-autofmt = { path = "../autofmt", version = "0.3.0" }
2023-02-22 20:22:45 +00:00
dioxus-rsx = { path = "../rsx" , version = "^0.0.3" }
html_parser = "0.6.3"
proc-macro2 = "1.0.49"
quote = "1.0.23"
syn = { version = "1.0.107", features = ["full"] }
2022-12-28 21:22:20 +00:00
convert_case = "0.5.0"
# [features]
# default = ["html"]
# eventually more output options
2023-04-24 21:07:50 +00:00
[dev-dependencies]
pretty_assertions = "1.2.1"