Skip to content

Commit 7e6f1c6

Browse files
author
naijim
authored
Merge branch 'main' into table-pr
2 parents df85dea + 592e417 commit 7e6f1c6

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,15 @@ jobs:
3838
components: clippy
3939
targets: wasm32-unknown-unknown
4040
# lint the main library workspace excluding the wasm feature
41-
- run: cargo clippy --features plotly_ndarray,plotly_image,kaleido -- -D warnings
41+
# Rust 1.79 generates a new lint in autogenrated code:
42+
# Added clippy allow at the command line until it is fixed. See: https://github.com/rust-lang/rust-clippy/issues/12643 and https://github.com/TedDriggs/darling/issues/293
43+
- run: cargo clippy --features plotly_ndarray,plotly_image,kaleido -- -D warnings -Aclippy::manual_unwrap_or_default
4244
# lint the plotly library with wasm enabled
43-
- run: cargo clippy --package plotly --features wasm --target wasm32-unknown-unknown -- -D warnings
45+
- run: cargo clippy --package plotly --features wasm --target wasm32-unknown-unknown -- -D warnings -Aclippy::manual_unwrap_or_default
4446
# lint the non-wasm examples
45-
- run: cd ${{ github.workspace }}/examples && cargo clippy --workspace --exclude "wasm*" -- -D warnings
47+
- run: cd ${{ github.workspace }}/examples && cargo clippy --workspace --exclude "wasm*" -- -D warnings -Aclippy::manual_unwrap_or_default
4648
# lint the wasm examples
47-
- run: cd ${{ github.workspace }}/examples && cargo clippy --target wasm32-unknown-unknown --package "wasm*"
49+
- run: cd ${{ github.workspace }}/examples && cargo clippy --target wasm32-unknown-unknown --package "wasm*" -- -Aclippy::manual_unwrap_or_default
4850

4951
semver:
5052
name: semver

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@
2929
</h4>
3030
</div>
3131

32+
<div align="center">
33+
<a href="https://dash.plotly.com/project-maintenance">
34+
<img src="https://dash.plotly.com/assets/images/maintained-by-community.png" width="400px" alt="Maintained by the Plotly Community">
35+
</a>
36+
</div>
37+
3238
# Table of Contents
3339

3440
* [Introduction](#introduction)

examples/wasm-yew-minimal/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "wasm-yew-minimal"
33
version = "0.1.0"
4-
authors = ["Michael Freeborn <[email protected]>"]
4+
authors = ["Michael Freeborn <[email protected]>", "Yuichi Nakamura <[email protected]>"]
55
edition = "2021"
66

77
[dependencies]
88
plotly = { path = "../../plotly", features = ["wasm"] }
99
yew = "0.21.0"
1010
yew-hooks = "0.3.2"
1111
log = "0.4.6"
12-
wasm-logger = "0.2"
12+
wasm-logger = "0.2"

0 commit comments

Comments
 (0)