Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
node-version: '20'
- name: Build frontend
run: cd web && npm ci && npm run build
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@1.88.0
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
Expand All @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@1.88.0
- uses: Swatinem/rust-cache@v2
- name: Install cargo-audit
run: cargo install cargo-audit --locked
Expand All @@ -53,7 +53,7 @@ jobs:
node-version: '20'
- name: Build frontend
run: cd web && npm ci && npm run build
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@1.88.0
- uses: Swatinem/rust-cache@v2
- name: Test
run: cargo test
2 changes: 1 addition & 1 deletion .github/workflows/eval.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
with:
fetch-depth: 0

- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@1.88.0
if: ${{ steps.secret-check.outputs.configured == 'true' }}
- uses: Swatinem/rust-cache@v2
if: ${{ steps.secret-check.outputs.configured == 'true' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
run: cd web && npm ci && npm run build

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@1.88.0
with:
targets: ${{ matrix.target }}

Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "diffscope"
version = "0.5.3"
edition = "2021"
rust-version = "1.88"
authors = ["Jonathan Haas <jonathan@haas.holdings>"]
description = "A composable code review engine with smart analysis, confidence scoring, and professional reporting"
license = "Apache-2.0"
Expand Down
3 changes: 3 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[toolchain]
channel = "1.88.0"
components = ["rustfmt", "clippy"]
2 changes: 2 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::uninlined_format_args)]

mod adapters;
mod commands;
mod config;
Expand Down
3 changes: 2 additions & 1 deletion web/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist/*
!dist/.gitkeep
dist-ssr
*.local

Expand Down
1 change: 1 addition & 0 deletions web/dist/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Loading