dioxus/packages/liveview/Cargo.toml

73 lines
2.1 KiB
TOML
Raw Normal View History

2021-12-10 02:19:31 +00:00
[package]
name = "dioxus-liveview"
version = "0.3.0"
2021-12-10 02:19:31 +00:00
edition = "2021"
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"]
2022-05-03 04:00:16 +00:00
description = "Build server-side apps with Dioxus"
license = "MIT/Apache-2.0"
2022-03-15 05:02:44 +00:00
2021-12-10 02:19:31 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.23.0", features = ["full"] }
futures-util = { version = "0.3.25", default-features = false, features = [
"sink",
] }
futures-channel = { version = "0.3.25", features = ["sink"] }
pretty_env_logger = "0.4.0"
tokio-stream = { version = "0.1.11", features = ["net"] }
2022-03-15 05:02:44 +00:00
serde = { version = "1.0.151", features = ["derive"] }
serde_json = "1.0.91"
tokio-util = { version = "0.7.4", features = ["full"] }
2022-03-15 05:02:44 +00:00
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" }
2022-03-15 05:02:44 +00:00
# warp
warp = { version = "0.3.3", optional = true }
2021-12-10 02:19:31 +00:00
2022-04-20 02:51:56 +00:00
# axum
axum = { version = "0.6.1", optional = true, features = ["ws"] }
tower = { version = "0.4.13", optional = true }
2022-04-20 02:51:56 +00:00
2022-09-13 21:24:30 +00:00
# salvo
salvo = { version = "0.37.7", optional = true, features = ["ws"] }
thiserror = "1.0.38"
uuid = { version = "1.2.2", features = ["v4"] }
anyhow = "1.0.68"
# 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 }
2022-09-13 21:24:30 +00:00
2022-04-17 15:59:43 +00:00
[dev-dependencies]
tokio = { version = "1.23.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"
2022-04-17 15:59:43 +00:00
2021-12-10 02:19:31 +00:00
[features]
default = []
# actix = ["actix-files", "actix-web", "actix-ws"]
[[example]]
name = "axum"
required-features = ["axum"]
[[example]]
name = "salvo"
required-features = ["salvo"]
[[example]]
name = "warp"
required-features = ["warp"]