dioxus/packages/fullstack/Cargo.toml

88 lines
2.9 KiB
TOML
Raw Normal View History

2023-03-28 18:35:17 +00:00
[package]
2023-05-02 15:15:34 +00:00
name = "dioxus-fullstack"
2023-08-01 00:30:18 +00:00
authors = ["Jonathan Kelley, Evan Almloff"]
version = { workspace = true }
2023-03-28 18:35:17 +00:00
edition = "2021"
2023-04-03 18:58:54 +00:00
description = "Fullstack Dioxus Utilities"
license = "MIT OR Apache-2.0"
2023-04-03 18:58:54 +00:00
repository = "https://github.com/DioxusLabs/dioxus/"
homepage = "https://dioxuslabs.com"
keywords = ["ui", "gui", "react", "ssr", "fullstack"]
2023-03-28 18:35:17 +00:00
[dependencies]
2023-04-02 20:07:51 +00:00
# server functions
server_fn = { version = "0.4.6", default-features = false }
dioxus_server_macro = { workspace = true }
2023-03-28 18:35:17 +00:00
# warp
warp = { version = "0.3.5", features = ["compression-gzip"], optional = true }
2023-03-31 14:40:58 +00:00
http-body = { version = "0.4.5", optional = true }
2023-07-08 01:25:45 +00:00
http-body-util = "0.1.0-rc.2"
2023-03-28 18:35:17 +00:00
# axum
2023-06-24 20:21:12 +00:00
axum = { version = "0.6.1", features = ["ws", "macros"], optional = true }
tower-http = { version = "0.4.0", optional = true, features = ["fs", "compression-gzip"] }
2023-07-08 01:25:45 +00:00
tower = { version = "0.4.13", features = ["util"], optional = true }
axum-macros = "0.3.7"
2023-03-28 18:35:17 +00:00
# salvo
2023-07-10 23:48:55 +00:00
salvo = { version = "0.46.0", optional = true, features = ["serve-static", "websocket", "compression"] }
2023-03-28 18:35:17 +00:00
serde = "1.0.159"
2023-04-02 20:07:51 +00:00
# Dioxus + SSR
dioxus = { workspace = true }
2023-06-19 19:29:11 +00:00
dioxus-ssr = { workspace = true, optional = true }
hyper = { version = "0.14.25", optional = true }
http = { version = "0.2.9", optional = true }
2023-03-30 01:20:26 +00:00
# Web Integration
dioxus-web = { workspace = true, features = ["hydrate"], optional = true }
# Desktop Integration
dioxus-desktop = { workspace = true, optional = true }
# Router Integration
dioxus-router = { workspace = true, optional = true }
2023-06-22 19:51:10 +00:00
2023-09-06 22:47:33 +00:00
tracing = { workspace = true }
tracing-futures = { workspace = true }
2023-03-30 01:20:26 +00:00
once_cell = "1.17.1"
thiserror = { workspace = true }
2023-06-19 19:29:11 +00:00
tokio = { workspace = true, features = ["full"], optional = true }
tokio-util = { version = "0.7.8", features = ["rt"], optional = true }
object-pool = "0.5.4"
2023-04-01 22:00:12 +00:00
anymap = "0.12.1"
2023-03-30 01:20:26 +00:00
2023-04-02 22:45:28 +00:00
serde_json = { version = "1.0.95", optional = true }
tokio-stream = { version = "0.1.12", features = ["sync"], optional = true }
2023-06-19 19:29:11 +00:00
futures-util = { workspace = true, optional = true }
postcard = { version = "1.0.4", features = ["use-std"] }
2023-04-30 21:35:11 +00:00
base64 = "0.21.0"
2023-04-02 22:45:28 +00:00
2023-07-07 00:54:05 +00:00
pin-project = "1.1.2"
async-trait = "0.1.71"
2023-07-08 01:25:45 +00:00
bytes = "1.4.0"
tower-layer = "0.3.2"
2023-07-07 00:54:05 +00:00
2023-04-02 20:07:51 +00:00
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
2023-06-19 19:29:11 +00:00
dioxus-hot-reload = { workspace = true }
2023-04-02 20:07:51 +00:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
web-sys = { version = "0.3.61", features = ["Window", "Document", "Element", "HtmlDocument", "Storage", "console"] }
2023-03-30 01:20:26 +00:00
[features]
2023-05-24 16:11:17 +00:00
default = ["hot-reload", "default-tls"]
2023-06-22 19:51:10 +00:00
router = ["dioxus-router"]
2023-06-28 18:27:11 +00:00
hot-reload = ["serde_json", "futures-util"]
web = ["dioxus-web"]
desktop = ["dioxus-desktop"]
2023-07-08 01:25:45 +00:00
warp = ["dep:warp", "ssr"]
axum = ["dep:axum", "tower-http", "ssr"]
salvo = ["dep:salvo", "ssr"]
2023-08-03 18:13:43 +00:00
ssr = ["server_fn/ssr", "dioxus_server_macro/ssr", "tokio", "tokio-util", "dioxus-ssr", "tower", "hyper", "http", "http-body", "dioxus-router/ssr", "tokio-stream"]
2023-05-24 16:11:17 +00:00
default-tls = ["server_fn/default-tls"]
rustls = ["server_fn/rustls"]
2023-06-22 19:51:10 +00:00
[dev-dependencies]
dioxus-fullstack = { path = ".", features = ["router"] }