dioxus/packages/ssr/Cargo.toml

39 lines
1 KiB
TOML
Raw Normal View History

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