mirror of
https://github.com/DioxusLabs/dioxus
synced 2025-02-18 06:38:26 +00:00
* Update openid example * Trim unnecessary deps * Update serve instructions * Remove unnecessary version in patch directive * Remove outdated workspace instructions * use storage signals instead of global signals with manual synchronization --------- Co-authored-by: Evan Almloff <evanalmloff@gmail.com>
36 lines
953 B
TOML
36 lines
953 B
TOML
[package]
|
|
name = "openid_auth_demo"
|
|
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]
|
|
anyhow = "1.0.86"
|
|
console_error_panic_hook = "0.1"
|
|
dioxus = { path = "../../packages/dioxus", default_features = true, features = [
|
|
"router",
|
|
"signals",
|
|
], version = "*" }
|
|
dioxus-logger = "0.5.1"
|
|
dioxus-sdk = { git = "https://github.com/Dioxuslabs/sdk", features = [
|
|
"storage",
|
|
] }
|
|
form_urlencoded = "1.2.1"
|
|
log = "0.4"
|
|
openidconnect = "3.5.0"
|
|
serde = { version = "1.0.203", features = ["derive"] }
|
|
uuid = "1.8"
|
|
|
|
[features]
|
|
default = ["web"]
|
|
server = ["dioxus/axum"]
|
|
web = ["dioxus/web"]
|
|
desktop = ["dioxus/desktop"]
|
|
fullstack = ["dioxus/fullstack"]
|
|
|
|
# since we're using dioxus from local path, inform dioxus-sdk to use it as well
|
|
[patch.crates-io]
|
|
dioxus = { path = "../../packages/dioxus" }
|
|
dioxus-signals = { path = "../../packages/signals" }
|