Skip to content

Commit 8c8753c

Browse files
committed
fix formatting and edition (why can't we use 2024..?)
1 parent ce8e35a commit 8c8753c

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

.github/workflows/publish-examples.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ on:
33
push:
44
branches: [master]
55
paths:
6-
- 'ci/**'
76
- 'tools/build-examples/**'
87
- 'examples/**'
98

tools/build-examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "build-examples"
33
version = "0.1.0"
4-
edition = "2024"
4+
edition = "2021"
55
publish = false
66

77
[dependencies]

tools/build-examples/src/bin/update-wasm-opt.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ use std::process::ExitCode;
55
use build_examples::{get_latest_wasm_opt_version, is_wasm_opt_outdated, NO_TRUNK_EXAMPLES};
66
use regex::Regex;
77

8-
98
fn main() -> ExitCode {
109
// Must be run from root of the repo
1110
let examples_dir = Path::new("examples");

tools/build-examples/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::path::Path;
22
use std::process::{Command, ExitCode};
33
use std::{env, fs};
44

5-
use build_examples::{NO_TRUNK_EXAMPLES, get_latest_wasm_opt_version, is_wasm_opt_outdated};
5+
use build_examples::{get_latest_wasm_opt_version, is_wasm_opt_outdated, NO_TRUNK_EXAMPLES};
66

77
fn main() -> ExitCode {
88
// Must be run from root of the repo:

0 commit comments

Comments
 (0)