12345678910111213141516171819202122232425262728293031323334353637 |
- [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"]}
- 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"]
|