Skip to content

Commit 62d80eb

Browse files
author
WinterPancake
committed
Merge branch 'simplicial_polytopic_number' of https://github.com/WinterPancake/Rust into simplicial_polytopic_number
2 parents 2abfaa9 + 4744cf4 commit 62d80eb

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@ jobs:
1414
name: cargo fmt
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- name: cargo fmt
1919
run: cargo fmt --all -- --check
2020

2121
clippy:
2222
name: cargo clippy
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- name: cargo clippy
2727
run: cargo clippy --all --all-targets -- -D warnings
2828

2929
test:
3030
name: cargo test
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
- name: cargo test
3535
run: cargo test

.github/workflows/code_ql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525

2626
- name: Initialize CodeQL
2727
uses: github/codeql-action/init@v3

.github/workflows/directory_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: DIRECTORY.md
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717
- uses: actions/setup-python@v5

.github/workflows/upload_coverage_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
env:
2222
CARGO_TERM_COLOR: always
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- uses: taiki-e/install-action@cargo-llvm-cov
2626
- name: Generate code coverage
2727
run: >

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Anshul Malik <[email protected]>"]
88
num-bigint = { version = "0.4", optional = true }
99
num-traits = { version = "0.2", optional = true }
1010
rand = "0.9"
11-
nalgebra = "0.33.0"
11+
nalgebra = "0.34.0"
1212

1313
[dev-dependencies]
1414
quickcheck = "1.0"

clippy.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
allowed-duplicate-crates = [
2-
"zerocopy",
3-
"zerocopy-derive",
2+
"glam",
43
]

0 commit comments

Comments
 (0)