Skip to content

Commit a70ada9

Browse files
sdbondiclaude
andauthored
chore: bump tari crate dependency versions (0.24/0.28/0.6) (#51)
* chore: bump tari crate versions across all templates - tari_template_lib/types: 0.22 -> 0.24 - tari_template_test_tooling: 0.26 -> 0.28 - ootle-rs: 0.3 -> 0.6 - tari_ootle_transaction/common_types: 0.27 -> 0.28 * update cargo.toml * ci: add clippy lint check for examples and fix existing warnings Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]> --------- Co-authored-by: Claude Opus 4.6 (1M context) <[email protected]>
1 parent 21901cf commit a70ada9

File tree

17 files changed

+237
-90
lines changed

17 files changed

+237
-90
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,31 @@ env:
99
CARGO_TERM_COLOR: always
1010

1111
jobs:
12+
lint-examples:
13+
name: Lint Examples
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- uses: dtolnay/rust-toolchain@stable
19+
with:
20+
components: clippy
21+
targets: wasm32-unknown-unknown
22+
23+
- uses: Swatinem/rust-cache@v2
24+
with:
25+
workspaces: |
26+
examples/guessing_game/template
27+
examples/guessing_game/cli
28+
29+
- name: Clippy (template - wasm)
30+
working-directory: examples/guessing_game/template
31+
run: cargo clippy --target wasm32-unknown-unknown -- -D warnings
32+
33+
- name: Clippy (cli)
34+
working-directory: examples/guessing_game/cli
35+
run: cargo clippy -- -D warnings
36+
1237
test-templates:
1338
name: Test Templates
1439
runs-on: ubuntu-latest

examples/guessing_game/cli/Cargo.lock

Lines changed: 118 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)