Skip to content

Commit

Permalink
Merge pull request #227 from rust-cli/renovate/stable-1.x
Browse files Browse the repository at this point in the history
chore(deps): Update dependency STABLE to v1.82.0
  • Loading branch information
epage authored Nov 1, 2024
2 parents 9ce373f + a28405f commit 7c48196
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: "1.80" # STABLE
toolchain: "1.82.0" # STABLE
- uses: Swatinem/rust-cache@v2
- name: Check documentation
env:
Expand All @@ -120,7 +120,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: "1.80" # STABLE
toolchain: "1.82.0" # STABLE
components: rustfmt
- uses: Swatinem/rust-cache@v2
- name: Check formatting
Expand All @@ -136,7 +136,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: "1.80" # STABLE
toolchain: "1.82.0" # STABLE
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Install SARIF tools
Expand Down
2 changes: 1 addition & 1 deletion crates/anstyle-parse/tests/testsuite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ advance!(
fn gen_exceed_max_buffer_size() -> (Vec<u8>, Dispatcher) {
static NUM_BYTES: usize = MAX_OSC_RAW + 100;
static INPUT_START: &[u8] = &[0x1b, b']', b'5', b'2', b';', b's'];
static INPUT_END: &[u8] = &[b'\x07'];
static INPUT_END: &[u8] = b"\x07";
let mut input = INPUT_START.to_vec();
input.resize(INPUT_START.len() + NUM_BYTES, b'a');
input.extend(INPUT_END);
Expand Down

0 comments on commit 7c48196

Please sign in to comment.