Skip to content

Commit

Permalink
update rust version
Browse files Browse the repository at this point in the history
  • Loading branch information
cookspam committed Sep 9, 2024
1 parent 6408569 commit d4f3ade
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 16 deletions.
21 changes: 11 additions & 10 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ futures = "0.3.30"
futures-timer = "0.6"
gloo = { version = "0.11.0", optional = true }
gloo-storage = { version = "0.3.0", optional = true }
home = { verison = "0.5.9", optional = true }
home = { version = "0.5.9", optional = true }
is-url = { version = "1.0.4" }
js-sys = { version = "0.3.67", optional = true }
log = "0.4.20"
Expand All @@ -77,7 +77,7 @@ serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = { version = "0.6.3", optional = true }
serde_json = "1.0"
solana-account-decoder = { version = "1.17.4", optional = true }
solana-client = { verison = "1.17.4", optional = true }
solana-client = { version = "1.17.4", optional = true }
solana-client-wasm = { version = "1.17.4", optional = true }
solana-extra-wasm = { version = "1.17.4", optional = true }
solana-sdk = { version = "1.17.4", optional = true }
Expand All @@ -86,7 +86,7 @@ spl-memo = { version = "^4", features = ["no-entrypoint"], optional = true }
spl-token = { version = "^4", features = ["no-entrypoint"], optional = true }
spl-associated-token-account = { version = "^2.2", features = [ "no-entrypoint" ], optional = true }
url = "2.5.0"
wasm-bindgen = { version = "0.2.91", optional = true }
wasm-bindgen = { version = "0.2.93", optional = true }
wasm-bindgen-futures = { version = "0.4.41", optional = true }
wasm-logger = { version = "0.2.0", optional = true }
web-time = { version = "1.0.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.74.0"
channel = "1.79.0"
components = [ "rustfmt", "rust-analyzer" ]
profile = "minimal"
3 changes: 2 additions & 1 deletion src/components/activity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ pub fn Activity(cx: Scope) -> Element {
}
img {
src: "{go}",
class: "absolute bottom-24 left-72 w-32 h-16 md:w-32 md:h-16 animate-jump_right sm:hidden",
class: "absolute bottom-24 left-72 w-32 h-16 md:w-32 md:h-16 animate-jump_right hidden md:inline-block", // Hidden on small screens, shown as inline-block on medium and up
}

img {
src: "{back}",
class: "absolute bottom-24 left-72 w-32 h-20 md:w-32 md:h-20 animate-move_left",
Expand Down
2 changes: 1 addition & 1 deletion src/components/navbar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ pub fn Navbar(cx: Scope) -> Element {
}
}
}
div {
div {
class: "flex flex-col h-full py-4 px-4 sm:px-8 grow w-full max-w-[96rem] mx-auto",
Outlet::<Route> {}
}
Expand Down

0 comments on commit d4f3ade

Please sign in to comment.