2021-12-10 02:19:31 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-liveview"
|
|
|
|
version = "0.1.0"
|
|
|
|
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
|
|
|
|
2022-12-16 22:20:05 +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]
|
2022-03-12 14:41:10 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
futures-util = { version = "0.3", default-features = false, features = [
|
|
|
|
"sink",
|
|
|
|
] }
|
|
|
|
futures-channel = { version = "0.3.17", features = ["sink"] }
|
|
|
|
pretty_env_logger = "0.4"
|
|
|
|
tokio-stream = { version = "0.1.1", features = ["net"] }
|
2022-03-15 05:02:44 +00:00
|
|
|
|
2022-03-12 14:41:10 +00:00
|
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
|
|
serde_json = "1.0.79"
|
2022-03-15 05:02:44 +00:00
|
|
|
tokio-util = { version = "0.7.0", features = ["full"] }
|
|
|
|
|
Release dioxus-core v0.2.1, dioxus-core-macro v0.2.1, dioxus-html v0.2.1, dioxus-interpreter-js v0.2.1, dioxus-desktop v0.2.3, dioxus-hooks v0.2.1, dioxus-liveview v0.1.0, dioxus-native-core v0.2.0, dioxus-native-core-macro v0.2.0, dioxus-router v0.2.3, dioxus-ssr v0.2.1, dioxus-tui v0.2.2, dioxus-web v0.2.1, fermi v0.2.1, dioxus v0.2.4
2022-05-03 03:57:20 +00:00
|
|
|
dioxus-html = { path = "../html", features = ["serialize"], version = "^0.2.1" }
|
|
|
|
dioxus-core = { path = "../core", features = ["serialize"], version = "^0.2.1" }
|
2022-12-16 22:20:05 +00:00
|
|
|
|
2022-03-12 14:41:10 +00:00
|
|
|
|
2022-03-15 05:02:44 +00:00
|
|
|
# warp
|
|
|
|
warp = { version = "0.3", optional = true }
|
2021-12-10 02:19:31 +00:00
|
|
|
|
2022-04-20 02:51:56 +00:00
|
|
|
# axum
|
|
|
|
axum = { version = "0.5.1", optional = true, features = ["ws"] }
|
|
|
|
tower = { version = "0.4.12", optional = true }
|
|
|
|
|
2022-09-13 21:24:30 +00:00
|
|
|
# salvo
|
|
|
|
salvo = { version = "0.32.0", optional = true, features = ["ws"] }
|
|
|
|
|
2022-04-17 15:59:43 +00:00
|
|
|
[dev-dependencies]
|
2022-04-24 02:13:43 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2022-07-09 19:15:20 +00:00
|
|
|
dioxus = { path = "../dioxus" }
|
2022-04-17 15:59:43 +00:00
|
|
|
warp = "0.3"
|
2022-04-20 02:51:56 +00:00
|
|
|
axum = { version = "0.5.1", features = ["ws"] }
|
2022-09-13 21:24:30 +00:00
|
|
|
salvo = { version = "0.32.0", features = ["affix", "ws"] }
|
2022-04-20 02:51:56 +00:00
|
|
|
tower = "0.4.12"
|
2022-04-17 15:59:43 +00:00
|
|
|
|
2021-12-10 02:19:31 +00:00
|
|
|
[features]
|
2022-12-16 22:20:05 +00:00
|
|
|
default = []
|