Skip to content

Commit c3e9c33

Browse files
authored
build(deps): update cargo dependencies (#68)
- [x] update `linfa` packges to version `0.8.1`; - [x] update `ndarray` to a version compatible with `linfa`; - [x] update other packages without breaking changes;
1 parent e046194 commit c3e9c33

File tree

18 files changed

+1340
-1013
lines changed

18 files changed

+1340
-1013
lines changed

.github/workflows/trunk.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ jobs:
4242

4343
- name: Install rust
4444
if: ${{ steps.changes.outputs.workspace == 'true' }}
45-
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
45+
run: |
46+
sudo apt-get update
47+
sudo apt-get install libfontconfig1-dev
48+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
4649
4750
- name: Install project dependencies
4851
if: ${{ steps.changes.outputs.workspace == 'true' }}

.github/workflows/validate-pr.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ jobs:
5252
5353
- name: Install rust
5454
if: steps.changes.outputs.workspace == 'true'
55-
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
55+
run: |
56+
sudo apt-get update
57+
sudo apt-get install libfontconfig1-dev
58+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
5659
5760
- name: Install project dependencies
5861
if: steps.changes.outputs.workspace == 'true'

0 commit comments

Comments
 (0)