mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
983fcfc616
* hoist example projects, remove oidc * move over example projects from the separate repo * Update ecommerce site to the latest version of dioxus * update wifi scanner to 0.5 * drop the chatbot example; might be restored in a separate PR --------- Co-authored-by: Evan Almloff <evanalmloff@gmail.com>
21 lines
497 B
TOML
21 lines
497 B
TOML
[package]
|
|
name = "fullstack-hello-world-example"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dioxus = { workspace = true, features = ["fullstack"]}
|
|
serde = "1.0.159"
|
|
simple_logger = "4.2.0"
|
|
tracing-wasm = "0.2.1"
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = "0.3.17"
|
|
reqwest = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
server = ["dioxus/axum"]
|
|
web = ["dioxus/web"]
|