2023-03-30 15:34:13 +00:00
|
|
|
[package]
|
2023-03-31 00:42:53 +00:00
|
|
|
name = "axum-hello-world"
|
2023-03-30 15:34:13 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-04-03 18:09:34 +00:00
|
|
|
publish = false
|
2023-03-30 15:34:13 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-17 22:58:03 +00:00
|
|
|
dioxus = { workspace = true, features = ["fullstack"]}
|
2023-03-30 15:34:13 +00:00
|
|
|
serde = "1.0.159"
|
2023-07-08 02:03:25 +00:00
|
|
|
simple_logger = "4.2.0"
|
2023-09-12 00:42:08 +00:00
|
|
|
tracing-wasm = "0.2.1"
|
2024-01-19 00:27:43 +00:00
|
|
|
tracing = { workspace = true }
|
2023-09-12 00:42:08 +00:00
|
|
|
tracing-subscriber = "0.3.17"
|
2023-07-18 00:23:15 +00:00
|
|
|
reqwest = "0.11.18"
|
2023-03-30 15:34:13 +00:00
|
|
|
|
|
|
|
[features]
|
2023-06-24 01:23:03 +00:00
|
|
|
default = []
|
2024-01-17 22:58:03 +00:00
|
|
|
ssr = ["dioxus/axum"]
|
|
|
|
web = ["dioxus/web"]
|