123456789101112131415161718192021222324252627282930 |
- [package]
- name = "dioxus-ssr"
- version = "0.2.0"
- authors = ["Jonathan Kelley"]
- edition = "2018"
- description = "Dioxus render-to-string"
- license = "MIT/Apache-2.0"
- repository = "https://github.com/DioxusLabs/dioxus/"
- homepage = "https://dioxuslabs.com"
- documentation = "https://dioxuslabs.com"
- keywords = ["dom", "ui", "gui", "react", "wasm"]
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- dioxus-core = { path = "../core", version = "^0.2.0", features = ["serialize"] }
- [dev-dependencies]
- dioxus-hooks = { path = "../hooks" }
- dioxus-html = { path = "../html" }
- dioxus-core-macro = { path = "../core-macro" }
- thiserror = "1.0.23"
- log = "0.4.13"
- 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"
|