File tree Expand file tree Collapse file tree 2 files changed +18
-12
lines changed Expand file tree Collapse file tree 2 files changed +18
-12
lines changed Original file line number Diff line number Diff line change @@ -148,21 +148,21 @@ jobs:
148
148
RUST_LOG : ${{ runner.debug && 'TRACE' || 'DEBUG' }}
149
149
150
150
151
- wasm_build :
152
- name : Build wasm32
153
- runs-on : ubuntu-latest
154
- steps :
155
- - name : Checkout sources
156
- uses : actions/checkout@v4
151
+ # wasm_build:
152
+ # name: Build wasm32
153
+ # runs-on: ubuntu-latest
154
+ # steps:
155
+ # - name: Checkout sources
156
+ # uses: actions/checkout@v4
157
157
158
- - name : Install stable toolchain
159
- uses : dtolnay/rust-toolchain@stable
158
+ # - name: Install stable toolchain
159
+ # uses: dtolnay/rust-toolchain@stable
160
160
161
- - name : Add wasm target
162
- run : rustup target add wasm32-unknown-unknown
161
+ # - name: Add wasm target
162
+ # run: rustup target add wasm32-unknown-unknown
163
163
164
- - name : wasm32 build
165
- run : cargo build --all-features --target wasm32-unknown-unknown
164
+ # - name: wasm32 build
165
+ # run: cargo build --all-features --target wasm32-unknown-unknown
166
166
167
167
check_semver :
168
168
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -84,6 +84,9 @@ name = "fetch-fsm"
84
84
[[example ]]
85
85
name = " fetch-stream"
86
86
87
+ [workspace .lints .rust ]
88
+ missing_debug_implementations = " warn"
89
+
87
90
# We use this --cfg for documenting the cargo features on which an API
88
91
# is available. To preview this locally use: RUSTFLAGS="--cfg
89
92
# iroh_docsrs cargo +nightly doc --all-features". We use our own
@@ -93,3 +96,6 @@ name = "fetch-stream"
93
96
# do. To enable for a crate set `#![cfg_attr(iroh_docsrs,
94
97
# feature(doc_cfg))]` in the crate.
95
98
unexpected_cfgs = { level = " warn" , check-cfg = [" cfg(iroh_docsrs)" ] }
99
+
100
+ [workspace .lints .clippy ]
101
+ unused-async = " warn"
You can’t perform that action at this time.
0 commit comments