Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: samgozman/rvp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.4
Choose a base ref
...
head repository: samgozman/rvp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
Showing with 350 additions and 225 deletions.
  1. +1 −0 .github/FUNDING.yml
  2. +6 −6 .github/workflows/ci.yml
  3. +3 −0 .gitignore
  4. +314 −193 Cargo.lock
  5. +14 −14 Cargo.toml
  6. +2 −2 src/commands/edit.rs
  7. +2 −2 src/commands/new.rs
  8. +8 −8 src/structure.rs
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: samgozman
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -12,9 +12,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions-rs/toolchain@v1.0.7
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.72.0
toolchain: 1.77.2
components: rustfmt

- name: Run rustfmt
@@ -30,10 +30,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions-rs/toolchain@v1.0.7
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
toolchain: 1.72.0
toolchain: 1.77.2
- name: Run clippy
run: cargo clippy --locked --all-targets --all-features --workspace -- -D warnings
timeout-minutes: 10
@@ -48,10 +48,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions-rs/toolchain@v1.0.7
- uses: dtolnay/rust-toolchain@stable
with:
name: test-${{matrix.os}}
toolchain: 1.72.0
toolchain: 1.77.2

- name: Run unit tests
run: cargo test --locked --all-targets --workspace --all-features
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -12,3 +12,6 @@ target/

# IDE
.idea/

# System Files
.DS_Store
Loading