Initial commit.
This commit is contained in:
commit
9a6709e02c
8 changed files with 227 additions and 0 deletions
20
Cargo.toml
Normal file
20
Cargo.toml
Normal 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"]
|
Loading…
Add table
Add a link
Reference in a new issue