Skip to content

Commit 3f7c433

Browse files
committed
Stop pinning dependencies
1 parent cf4f73e commit 3f7c433

4 files changed

Lines changed: 4 additions & 301 deletions

File tree

.github/dependabot.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
11
version: 2
22
updates:
3-
- package-ecosystem: cargo
4-
directory: "/"
5-
versioning-strategy: lockfile-only
6-
allow:
7-
- dependency-type: "all"
8-
schedule:
9-
interval: weekly
10-
groups:
11-
all-deps:
12-
patterns:
13-
- "*"
143
- package-ecosystem: "github-actions"
154
directory: "/"
165
schedule:

.github/workflows/test.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,6 @@ permissions:
1818
contents: read # to fetch code (actions/checkout)
1919

2020
jobs:
21-
lockfile:
22-
name: Lockfile is up-to-date
23-
runs-on: ubuntu-latest
24-
steps:
25-
- uses: actions/checkout@v7
26-
- uses: dtolnay/rust-toolchain@stable
27-
- run: cargo check --workspace --locked
28-
2921
clippy:
3022
name: Clippy
3123
runs-on: ubuntu-latest
@@ -110,6 +102,9 @@ jobs:
110102
if: ${{ matrix.variant == 'minimal_versions' }}
111103
run: |
112104
cargo generate-lockfile -Z minimal-versions
105+
- name: Not MSRV
106+
if: ${{ matrix.variant != 'MSRV' }}
107+
run: cargo generate-lockfile --ignore-rust-version
113108
- name: Maybe nightly
114109
if: ${{ matrix.toolchain == 'nightly' }}
115110
run: |

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
target
2+
Cargo.lock
23
rand_wasm_bindgen_test*.[tj]s
34
rand_wasm_bindgen_test*.wasm
45
/benches/Cargo.lock

Cargo.lock

Lines changed: 0 additions & 282 deletions
This file was deleted.

0 commit comments

Comments
 (0)