Skip to content

Commit

Permalink
use dioxus 0.5 everywhere except the fullstack storage example
Browse files Browse the repository at this point in the history
  • Loading branch information
ealmloff committed May 30, 2024
1 parent 4045351 commit 8dd85a6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
6 changes: 2 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,5 @@ exclude = ["examples/storage"]

[workspace.dependencies]
dioxus-sdk = { path = "./sdk" }
# dioxus = { version = "0.5" }
# dioxus-desktop = { version = "0.5" }
dioxus = { git = "https://github.com/DioxusLabs/dioxus", branch = "v0.5" }
dioxus-desktop = { git = "https://github.com/DioxusLabs/dioxus", branch = "v0.5" }
dioxus = { version = "0.5" }
dioxus-desktop = { version = "0.5" }
14 changes: 7 additions & 7 deletions examples/storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ edition = "2021"

[dependencies]
dioxus-sdk = { path = "../../sdk", features = ["storage"] }
dioxus = { git = "https://github.com/DioxusLabs/dioxus", branch = "v0.5", features = ["router"] }
dioxus = { version = "0.5", features = ["router"] }

[features]
web = ["dioxus/web"]
desktop = ["dioxus/desktop"]
fullstack = ["dioxus/fullstack"]
server = ["dioxus/axum"]

# # Fullstack support requires a patch from 0.5.2
# [patch.crates-io]
# dioxus = { git = "https://github.com/dioxuslabs/dioxus", branch = "v0.5" }
# dioxus-core = { git = "https://github.com/dioxuslabs/dioxus", branch = "v0.5" }
# dioxus-hooks = { git = "https://github.com/dioxuslabs/dioxus", branch = "v0.5" }
# dioxus-signals = { git = "https://github.com/dioxuslabs/dioxus", branch = "v0.5" }
# Fullstack support requires a patch from 0.5.2
[patch.crates-io]
dioxus = { git = "https://github.com/dioxuslabs/dioxus", branch = "v0.5" }
dioxus-core = { git = "https://github.com/dioxuslabs/dioxus", branch = "v0.5" }
dioxus-hooks = { git = "https://github.com/dioxuslabs/dioxus", branch = "v0.5" }
dioxus-signals = { git = "https://github.com/dioxuslabs/dioxus", branch = "v0.5" }

0 comments on commit 8dd85a6

Please sign in to comment.