dioxus/packages/ssr/Cargo.toml

45 lines
1.2 KiB
TOML
Raw Normal View History

2021-01-15 23:25:29 -05:00
[package]
name = "dioxus-ssr"
version = { workspace = true }
2021-12-15 16:04:27 -05:00
authors = ["Jonathan Kelley"]
2024-01-18 19:27:55 -08:00
edition = "2021"
2021-09-24 22:15:50 -04:00
description = "Dioxus render-to-string"
license = "MIT OR Apache-2.0"
2021-12-15 16:04:27 -05:00
repository = "https://github.com/DioxusLabs/dioxus/"
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"] }
2024-01-04 19:36:10 -06:00
dioxus-html = { workspace = true, features = ["eval"]}
2024-02-02 14:47:59 -06:00
generational-box = { workspace = true }
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"
async-trait = "0.1.58"
serde_json = { version = "1.0" }
2024-02-17 05:12:33 +09:00
web-time = "1.0.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
tokio = { version = "1.28", features = ["io-util"], optional = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "1.28", features = ["fs", "io-util"], optional = true }
2021-05-27 17:57:59 -04:00
[dev-dependencies]
2023-06-19 14:29:11 -05:00
dioxus = { 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"
dioxus-signals = { workspace = true }
[features]
2024-01-19 16:36:40 -08:00
default = []
incremental = ["dep:tokio"]