mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
70 lines
2.1 KiB
TOML
70 lines
2.1 KiB
TOML
[package]
|
|
name = "dioxus-liveview"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
homepage = "https://dioxuslabs.com"
|
|
documentation = "https://dioxuslabs.com"
|
|
keywords = ["dom", "ui", "gui", "react", "liveview"]
|
|
description = "Build server-side apps with Dioxus"
|
|
license = "MIT/Apache-2.0"
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
thiserror = "1.0.38"
|
|
futures-util = { version = "0.3.25", default-features = false, features = [
|
|
"sink",
|
|
] }
|
|
futures-channel = { version = "0.3.25", features = ["sink"] }
|
|
tokio = { version = "1.22.0", features = ["time"] }
|
|
tokio-stream = { version = "0.1.11", features = ["net"] }
|
|
tokio-util = { version = "0.7.4", features = ["rt"] }
|
|
serde = { version = "1.0.151", features = ["derive"] }
|
|
serde_json = "1.0.91"
|
|
dioxus-html = { path = "../html", features = ["serialize"], version = "^0.3.0" }
|
|
dioxus-core = { path = "../core", features = ["serialize"], version = "^0.3.0" }
|
|
dioxus-interpreter-js = { path = "../interpreter", version = "0.3.0" }
|
|
dioxus-hot-reload = { path = "../hot-reload", optional = true }
|
|
|
|
# warp
|
|
warp = { version = "0.3.3", optional = true }
|
|
|
|
# axum
|
|
axum = { version = "0.6.1", optional = true, features = ["ws"] }
|
|
|
|
# salvo
|
|
salvo = { version = "0.37.7", optional = true, features = ["ws"] }
|
|
once_cell = "1.17.1"
|
|
|
|
# actix is ... complicated?
|
|
# actix-files = { version = "0.6.2", optional = true }
|
|
# actix-web = { version = "4.2.1", optional = true }
|
|
# actix-ws = { version = "0.2.5", optional = true }
|
|
|
|
[dev-dependencies]
|
|
pretty_env_logger = { version = "0.4.0" }
|
|
tokio = { version = "1.22.0", features = ["full"] }
|
|
dioxus = { path = "../dioxus", version = "0.3.0" }
|
|
warp = "0.3.3"
|
|
axum = { version = "0.6.1", features = ["ws"] }
|
|
salvo = { version = "0.37.7", features = ["affix", "ws"] }
|
|
tower = "0.4.13"
|
|
|
|
[features]
|
|
default = ["hot-reload"]
|
|
# actix = ["actix-files", "actix-web", "actix-ws"]
|
|
hot-reload = ["dioxus-hot-reload"]
|
|
|
|
[[example]]
|
|
name = "axum"
|
|
required-features = ["axum"]
|
|
|
|
[[example]]
|
|
name = "salvo"
|
|
required-features = ["salvo"]
|
|
|
|
[[example]]
|
|
name = "warp"
|
|
required-features = ["warp"]
|