mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
38 lines
1 KiB
TOML
38 lines
1 KiB
TOML
[package]
|
|
name = "dioxus-ssr"
|
|
version = { workspace = true }
|
|
authors = ["Jonathan Kelley"]
|
|
edition = "2021"
|
|
description = "Dioxus render-to-string"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
keywords = ["dom", "ui", "gui", "react", "ssr"]
|
|
|
|
[dependencies]
|
|
dioxus-core = { workspace = true, features = ["serialize"] }
|
|
dioxus-html = { workspace = true, features = ["eval"]}
|
|
generational-box = { workspace = true }
|
|
askama_escape = "0.10.3"
|
|
thiserror = "1.0.23"
|
|
rustc-hash = "1.1.0"
|
|
lru = "0.10.0"
|
|
tracing = { workspace = true }
|
|
http = "0.2.9"
|
|
tokio = { version = "1.28", features = ["fs", "io-util"], optional = true }
|
|
async-trait = "0.1.58"
|
|
serde_json = { version = "1.0" }
|
|
|
|
[dev-dependencies]
|
|
dioxus = { workspace = true }
|
|
tracing = { workspace = true }
|
|
fern = { version = "0.6.0", features = ["colored"] }
|
|
anyhow = "1.0"
|
|
argh = "0.1.4"
|
|
serde = "1.0.120"
|
|
serde_json = "1.0.61"
|
|
fs_extra = "1.2.0"
|
|
dioxus-signals = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
incremental = ["dep:tokio"]
|