2021-01-16 04:25:29 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-ssr"
|
2023-01-04 19:31:07 +00:00
|
|
|
version = "0.3.0"
|
2021-12-15 21:04:27 +00:00
|
|
|
authors = ["Jonathan Kelley"]
|
2021-01-16 04:25:29 +00:00
|
|
|
edition = "2018"
|
2021-09-25 02:15:50 +00:00
|
|
|
description = "Dioxus render-to-string"
|
|
|
|
license = "MIT/Apache-2.0"
|
2021-12-15 21:04:27 +00:00
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
|
|
homepage = "https://dioxuslabs.com"
|
|
|
|
documentation = "https://dioxuslabs.com"
|
2021-12-15 21:06:13 +00:00
|
|
|
keywords = ["dom", "ui", "gui", "react", "wasm"]
|
2021-01-16 04:25:29 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2021-01-21 07:25:44 +00:00
|
|
|
[dependencies]
|
2023-01-04 19:31:07 +00:00
|
|
|
dioxus-core = { path = "../core", version = "^0.3.0", features = ["serialize"] }
|
2021-05-27 21:57:59 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-01-04 19:31:07 +00:00
|
|
|
dioxus = { path = "../dioxus", version = "0.3.0" }
|
2021-05-27 21:57:59 +00:00
|
|
|
thiserror = "1.0.23"
|
|
|
|
log = "0.4.13"
|
|
|
|
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"
|