2021-12-09 21:19:31 -05:00
|
|
|
[package]
|
|
|
|
name = "dioxus-liveview"
|
2023-07-31 18:49:54 -07:00
|
|
|
version = { workspace = true }
|
2021-12-09 21:19:31 -05:00
|
|
|
edition = "2021"
|
2021-12-15 16:04:27 -05:00
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
2023-09-16 19:03:27 +02:00
|
|
|
homepage = "https://dioxuslabs.com/learn/0.4/getting_started/liveview"
|
2023-01-10 10:16:11 -06:00
|
|
|
keywords = ["dom", "ui", "gui", "react", "liveview"]
|
2022-05-03 00:00:16 -04:00
|
|
|
description = "Build server-side apps with Dioxus"
|
2023-07-31 17:59:36 -07:00
|
|
|
authors = ["Jonathan Kelley", "Evan Almloff"]
|
2023-07-20 18:00:07 +01:00
|
|
|
license = "MIT OR Apache-2.0"
|
2022-05-03 00:00:16 -04:00
|
|
|
|
2021-12-09 21:19:31 -05:00
|
|
|
[dependencies]
|
2023-07-11 22:54:24 +02:00
|
|
|
thiserror = { workspace = true }
|
2023-09-06 17:47:33 -05:00
|
|
|
tracing = { workspace = true }
|
2023-06-19 14:29:11 -05:00
|
|
|
slab = { workspace = true }
|
|
|
|
futures-util = { workspace = true, default-features = false, features = [
|
2022-03-12 09:41:10 -05:00
|
|
|
"sink",
|
|
|
|
] }
|
2023-06-19 14:29:11 -05:00
|
|
|
futures-channel = { workspace = true }
|
|
|
|
tokio = { workspace = true, features = ["time", "macros"] }
|
2022-12-19 15:29:20 -08:00
|
|
|
tokio-stream = { version = "0.1.11", features = ["net"] }
|
2023-01-13 17:25:18 +01:00
|
|
|
tokio-util = { version = "0.7.4", features = ["rt"] }
|
2022-12-19 15:29:20 -08:00
|
|
|
serde = { version = "1.0.151", features = ["derive"] }
|
|
|
|
serde_json = "1.0.91"
|
2023-08-28 12:43:21 -05:00
|
|
|
dioxus-html = { workspace = true, features = ["serialize", "eval", "mounted"] }
|
2023-10-09 14:28:12 -05:00
|
|
|
rustc-hash = { workspace = true }
|
2023-06-19 14:29:11 -05:00
|
|
|
dioxus-core = { workspace = true, features = ["serialize"] }
|
2023-10-19 16:40:08 -05:00
|
|
|
dioxus-interpreter-js = { workspace = true, features = ["binary-protocol"] }
|
2023-06-19 14:29:11 -05:00
|
|
|
dioxus-hot-reload = { workspace = true, optional = true }
|
2022-03-12 09:41:10 -05:00
|
|
|
|
2022-03-15 01:02:44 -04:00
|
|
|
# warp
|
2022-12-19 15:29:20 -08:00
|
|
|
warp = { version = "0.3.3", optional = true }
|
2021-12-09 21:19:31 -05:00
|
|
|
|
2022-04-19 22:51:56 -04:00
|
|
|
# axum
|
2022-12-19 15:29:20 -08:00
|
|
|
axum = { version = "0.6.1", optional = true, features = ["ws"] }
|
2022-04-19 22:51:56 -04:00
|
|
|
|
2022-09-14 05:24:30 +08:00
|
|
|
# salvo
|
2023-12-20 15:18:20 -06:00
|
|
|
salvo = { version = "0.63.0", optional = true, features = ["websocket"] }
|
2023-04-25 14:26:12 -05:00
|
|
|
once_cell = "1.17.1"
|
2023-07-21 18:36:25 -04:00
|
|
|
async-trait = "0.1.71"
|
2022-12-19 15:29:20 -08:00
|
|
|
|
2023-12-30 21:49:32 +02:00
|
|
|
# rocket
|
|
|
|
rocket = { version = "0.5.0", optional = true }
|
|
|
|
rocket_ws = { version = "0.1.0", optional = true }
|
|
|
|
|
2022-12-19 15:29:20 -08:00
|
|
|
# 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-14 05:24:30 +08:00
|
|
|
|
2022-04-17 11:59:43 -04:00
|
|
|
[dev-dependencies]
|
2023-05-29 12:20:33 +12:00
|
|
|
pretty_env_logger = { version = "0.5.0" }
|
2023-06-19 14:29:11 -05:00
|
|
|
tokio = { workspace = true, features = ["full"] }
|
2022-12-19 15:29:20 -08:00
|
|
|
warp = "0.3.3"
|
|
|
|
axum = { version = "0.6.1", features = ["ws"] }
|
2023-12-20 15:18:20 -06:00
|
|
|
salvo = { version = "0.63.0", features = ["affix", "websocket"] }
|
2023-12-30 21:49:32 +02:00
|
|
|
rocket = "0.5.0"
|
|
|
|
rocket_ws = "0.1.0"
|
2022-12-19 15:29:20 -08:00
|
|
|
tower = "0.4.13"
|
2022-04-17 11:59:43 -04:00
|
|
|
|
2023-10-09 14:28:12 -05:00
|
|
|
[build-dependencies]
|
2023-10-19 16:40:08 -05:00
|
|
|
dioxus-interpreter-js = { workspace = true, features = ["binary-protocol"] }
|
2023-10-09 14:28:12 -05:00
|
|
|
minify-js = "0.5.6"
|
|
|
|
|
2021-12-09 21:19:31 -05:00
|
|
|
[features]
|
2023-01-11 14:41:29 -06:00
|
|
|
default = ["hot-reload"]
|
2022-12-19 15:29:20 -08:00
|
|
|
# actix = ["actix-files", "actix-web", "actix-ws"]
|
2023-01-13 17:50:32 -06:00
|
|
|
hot-reload = ["dioxus-hot-reload"]
|
2023-12-30 21:49:32 +02:00
|
|
|
rocket = ["dep:rocket", "dep:rocket_ws"]
|
2022-12-19 13:11:49 -08:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "axum"
|
|
|
|
required-features = ["axum"]
|
|
|
|
|
2023-10-09 14:28:12 -05:00
|
|
|
[[example]]
|
|
|
|
name = "axum_stress"
|
|
|
|
required-features = ["axum"]
|
|
|
|
|
2022-12-19 13:11:49 -08:00
|
|
|
[[example]]
|
|
|
|
name = "salvo"
|
|
|
|
required-features = ["salvo"]
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "warp"
|
|
|
|
required-features = ["warp"]
|
2023-12-30 21:49:32 +02:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "rocket"
|
|
|
|
required-features = ["rocket"]
|