mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
31 lines
659 B
TOML
31 lines
659 B
TOML
[package]
|
|
name = "axum-desktop"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
dioxus-desktop = { workspace = true, optional = true }
|
|
dioxus = { workspace = true }
|
|
dioxus-router = { workspace = true }
|
|
dioxus-fullstack = { workspace = true }
|
|
axum = { version = "0.6.12", optional = true }
|
|
tokio = { workspace = true, features = ["full"], optional = true }
|
|
serde = "1.0.159"
|
|
|
|
[features]
|
|
default = []
|
|
ssr = ["axum", "tokio", "dioxus-fullstack/axum"]
|
|
desktop = ["dioxus-desktop"]
|
|
|
|
[[bin]]
|
|
name = "client"
|
|
path = "src/client.rs"
|
|
required-features = ["desktop"]
|
|
|
|
[[bin]]
|
|
name = "server"
|
|
path = "src/server.rs"
|
|
required-features = ["ssr"]
|