dioxus/packages/fullstack/examples/axum-hello-world/Cargo.toml

30 lines
741 B
TOML
Raw Normal View History

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]
2023-06-28 18:27:11 +00:00
dioxus-web = { workspace = true, features = ["hydrate"], optional = true }
dioxus = { workspace = true }
dioxus-fullstack = { workspace = true }
2023-03-30 15:34:13 +00:00
axum = { version = "0.6.12", optional = true }
tokio = { workspace = true, features = ["full"], optional = true }
2023-03-30 15:34:13 +00:00
serde = "1.0.159"
execute = "0.2.12"
2023-07-08 01:25:45 +00:00
tower-http = { version = "0.4.1", features = ["auth"] }
2023-03-30 15:34:13 +00:00
[features]
2023-06-24 01:23:03 +00:00
default = []
2023-05-02 15:15:34 +00:00
ssr = ["axum", "tokio", "dioxus-fullstack/axum"]
2023-04-03 18:34:34 +00:00
web = ["dioxus-web"]
2023-07-07 18:03:59 +00:00
[profile.release]
lto = true
panic = "abort"
opt-level = 'z'
strip = true
codegen-units = 1