2021-01-15 23:25:29 -05:00
|
|
|
[package]
|
|
|
|
name = "dioxus-ssr"
|
2023-07-31 18:49:54 -07:00
|
|
|
version = { workspace = true }
|
2021-12-15 16:04:27 -05:00
|
|
|
authors = ["Jonathan Kelley"]
|
2021-01-15 23:25:29 -05:00
|
|
|
edition = "2018"
|
2021-09-24 22:15:50 -04:00
|
|
|
description = "Dioxus render-to-string"
|
2023-07-20 18:00:07 +01:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-12-15 16:04:27 -05:00
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
2023-01-10 10:16:11 -06:00
|
|
|
keywords = ["dom", "ui", "gui", "react", "ssr"]
|
2021-01-15 23:25:29 -05:00
|
|
|
|
2021-01-21 02:25:44 -05:00
|
|
|
[dependencies]
|
2023-06-19 14:29:11 -05:00
|
|
|
dioxus-core = { workspace = true, features = ["serialize"] }
|
2023-02-14 08:44:01 -06:00
|
|
|
askama_escape = "0.10.3"
|
2023-06-22 16:51:48 -07:00
|
|
|
thiserror = "1.0.23"
|
|
|
|
rustc-hash = "1.1.0"
|
|
|
|
lru = "0.10.0"
|
2023-09-06 17:47:33 -05:00
|
|
|
tracing = { workspace = true }
|
2023-06-24 13:21:12 -07:00
|
|
|
http = "0.2.9"
|
2023-09-01 08:55:44 -06:00
|
|
|
tokio = { version = "1.28", features = ["full"], optional = true }
|
2021-05-27 17:57:59 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-06-19 14:29:11 -05:00
|
|
|
dioxus = { workspace = true }
|
2023-07-11 22:54:24 +02:00
|
|
|
thiserror = { workspace = true }
|
2023-09-06 17:47:33 -05:00
|
|
|
tracing = { workspace = true }
|
2021-05-27 17:57:59 -04:00
|
|
|
fern = { version = "0.6.0", features = ["colored"] }
|
2021-07-27 00:27:07 -04:00
|
|
|
anyhow = "1.0"
|
2021-05-27 17:57:59 -04:00
|
|
|
argh = "0.1.4"
|
|
|
|
serde = "1.0.120"
|
|
|
|
serde_json = "1.0.61"
|
|
|
|
fs_extra = "1.2.0"
|
2023-09-01 08:55:44 -06:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["incremental"]
|
|
|
|
incremental = ["dep:tokio"]
|