From 131e294ebded363b21de6303377054f110286f1e Mon Sep 17 00:00:00 2001 From: RenovateBot Date: Sun, 20 Aug 2023 02:00:54 +0200 Subject: [PATCH 1/6] Update Rust crate anyhow to 1.0.75 --- rust/serial_reader/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/serial_reader/Cargo.toml b/rust/serial_reader/Cargo.toml index f77eb0b..a2c7b76 100644 --- a/rust/serial_reader/Cargo.toml +++ b/rust/serial_reader/Cargo.toml @@ -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" From 98543ac4e5e335eee32f503c72492d8e033ab4e0 Mon Sep 17 00:00:00 2001 From: hodasemi Date: Mon, 21 Aug 2023 08:19:06 +0200 Subject: [PATCH 2/6] .gitea/workflows/pull_request.yaml aktualisiert --- .gitea/workflows/pull_request.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 8ba2d08..d647bd6 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -23,6 +23,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 +37,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 + - name: Build run: | cd rust/serial_reader From 6f746bebbd8bb67f2e2c0b8a7b8b6a808631593e Mon Sep 17 00:00:00 2001 From: RenovateBot Date: Fri, 25 Aug 2023 02:00:59 +0200 Subject: [PATCH 3/6] Update Rust crate avr-device to 0.5.2 --- rust/arduino/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/arduino/Cargo.toml b/rust/arduino/Cargo.toml index 45768d2..9c463a5 100644 --- a/rust/arduino/Cargo.toml +++ b/rust/arduino/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] panic-halt = "0.2.0" -avr-device = { version = "0.5.1", features = ["atmega328p"] } +avr-device = { version = "0.5.2", features = ["atmega328p"] } arduino-hal = { git = "https://github.com/Rahix/avr-hal", features = ["arduino-uno"], rev = "1aacefb335517f85d0de858231e11055d9768cdf" } ufmt = "0.2.0" From 694d73a28b740e863ce282a69fb23f0d159068c6 Mon Sep 17 00:00:00 2001 From: hodasemi Date: Fri, 25 Aug 2023 09:31:09 +0200 Subject: [PATCH 4/6] .gitea/workflows/pull_request.yaml aktualisiert --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index d647bd6..f2349b9 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -40,7 +40,7 @@ jobs: - name: Install dependencies run: | apt-get update - apt-get install --no-install-recommends -y libpango1.0-dev + apt-get install --no-install-recommends -y libpango1.0-dev libgtk-3-dev - name: Build run: | From c77c631cc64d47c28489e1f2fc04fe06b02f494a Mon Sep 17 00:00:00 2001 From: hodasemi Date: Fri, 25 Aug 2023 10:17:50 +0200 Subject: [PATCH 5/6] .gitea/workflows/pull_request.yaml aktualisiert --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index f2349b9..19830ff 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -40,7 +40,7 @@ jobs: - name: Install dependencies run: | apt-get update - apt-get install --no-install-recommends -y libpango1.0-dev libgtk-3-dev + apt-get install --no-install-recommends -y libpango1.0-dev libgtk-3-dev libudev-dev - name: Build run: | From 2907ba76a302e1719858c4dab6d4bca02a8eeab5 Mon Sep 17 00:00:00 2001 From: hodasemi Date: Fri, 25 Aug 2023 10:24:26 +0200 Subject: [PATCH 6/6] .gitea/workflows/pull_request.yaml aktualisiert --- .gitea/workflows/pull_request.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 19830ff..c189583 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -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