dioxus/packages/fullstack/Cargo.toml

88 lines
2.9 KiB
TOML
Raw Normal View History

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