20 lines
565 B
TOML
20 lines
565 B
TOML
[package]
|
|
name = "dx-extract-test"
|
|
version = "0.1.0"
|
|
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
axum = { version = "0.7", optional = true }
|
|
dioxus = { version = "0.6.0", features = ["fullstack"] }
|
|
serde = "1"
|
|
tokio = { version = "1", features = ["full"], optional = true }
|
|
|
|
[features]
|
|
default = ["web"]
|
|
web = ["dioxus/web"]
|
|
desktop = ["dioxus/desktop"]
|
|
mobile = ["dioxus/mobile"]
|
|
server = ["dioxus/server", "axum", "tokio"]
|