Update Rust crate anyhow to 1.0.75 #37
2 changed files with 14 additions and 1 deletions
|
@ -12,6 +12,11 @@ jobs:
|
|||
|
||||
- uses: https://github.com/dtolnay/rust-toolchain@stable
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get install --no-install-recommends -y gcc-avr
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
cd rust/arduino
|
||||
|
@ -23,6 +28,9 @@ jobs:
|
|||
|
||||
- uses: https://github.com/dtolnay/rust-toolchain@stable
|
||||
|
||||
- name: Install flip-link
|
||||
run: cargo install flip-link
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
cd rust/pico
|
||||
|
@ -34,6 +42,11 @@ jobs:
|
|||
|
||||
- uses: https://github.com/dtolnay/rust-toolchain@stable
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get install --no-install-recommends -y libpango1.0-dev libgtk-3-dev libudev-dev
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
cd rust/serial_reader
|
||||
|
|
|
@ -8,5 +8,5 @@ edition = "2021"
|
|||
[dependencies]
|
||||
serialport = "4.2.2"
|
||||
gtk = { version = "0.18.0", features = ["v3_24"] }
|
||||
anyhow = { version = "1.0.74", features = ["backtrace"] }
|
||||
anyhow = { version = "1.0.75", features = ["backtrace"] }
|
||||
glib = "0.18.1"
|
||||
|
|
Loading…
Reference in a new issue