Skip to content

Commit

Permalink
seems to build now, issue was old dioxus dependencies in parent crate
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Dec 10, 2024
1 parent 8265495 commit 541d39e
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 32 deletions.
45 changes: 23 additions & 22 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 1 addition & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,13 @@ aes-gcm = "0.11.0-pre.2"
# Utilities
itertools = "0.13.0"
rand = "0.8.5"
getrandom = { version = "0.2.15", features = ["js", "wasm-bindgen", "std"] }
getrandom = { version = "0.2.15", features = ["js"] }
base64 = "0.22.1"
once_cell = "1.18.0"
data-encoding = "2.3.3"
log = "0.4.22"
chrono = { version = "0.4", features = ["serde"] }

# UI Framework
dioxus = { version = "0.5.6", features = ["web", "hooks"] }
dioxus-web = { version = "0.5.6" }
dioxus-logger = "0.5.1"
dioxus-free-icons = { version = "0.8.6", features = ["font-awesome-solid", "font-awesome-regular", "font-awesome-brands"] }
dioxus-hooks = "0.5.6"
dioxus-signals = "0.5.6"

# Web-related
web-sys = { version = "0.3.64", features = ["HtmlInputElement", "WindowClient", "Navigator", "Window"] }
wasm-bindgen = "0.2.73"
Expand Down
3 changes: 2 additions & 1 deletion ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ sha2.workspace = true
aes-gcm.workspace = true

# Randomness
rand = { workspace = true, features = ["getrandom"] }
rand.workspace = true
getrandom.workspace = true

# UI Framework
dioxus = { version = "0.6.0", features = ["web"] }
Expand Down

0 comments on commit 541d39e

Please sign in to comment.