Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
senekor committed Mar 4, 2024
1 parent ea3b882 commit 1c15ffa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2023-06-30 # duplicated in rust-toolchain.toml
toolchain: nightly-2024-03-03 # duplicated in rust-toolchain.toml
targets: wasm32-unknown-unknown
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
Expand Down
4 changes: 4 additions & 0 deletions app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,7 @@ leptos_router = { version = "0.5.0", features = ["csr", "nightly"] }
models = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }

[lints.clippy]
# leptos' #[component] macros generate empty doc comments which trigger this
empty_docs = "allow"
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2023-06-30" # duplicated in github action
channel = "nightly-2024-03-03" # duplicated in github action
targets = ["wasm32-unknown-unknown"]

0 comments on commit 1c15ffa

Please sign in to comment.