Initial commit.

This commit is contained in:
Nolan Darilek 2025-04-28 14:30:34 -05:00
commit 9a6709e02c
8 changed files with 227 additions and 0 deletions

20
Cargo.toml Normal file
View file

@ -0,0 +1,20 @@
[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"]