Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v5
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libwebkit2gtk-4.1-dev
packages: libwebkit2gtk-4.1-dev libudev-dev
version: 1.0
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
Expand All @@ -42,9 +42,9 @@ jobs:
- uses: actions/checkout@v5
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libwebkit2gtk-4.1-dev
packages: libwebkit2gtk-4.1-dev libudev-dev
version: 1.0
- uses: taiki-e/install-action@v2
with:
tool: nextest
- run: cargo nextest run --workspace --all-features --profile ci
- run: cargo nextest run --workspace --all-features --profile ci
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
if: contains(matrix.platform, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf xdg-utils
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf xdg-utils libudev-dev

- name: Install Rust Nightly
uses: dtolnay/rust-toolchain@nightly
Expand Down
194 changes: 135 additions & 59 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ eyre = "0.6"
ndarray = "0.17.1"

[workspace]
members = ["src-tauri"]
members = ["src-tauri", "sensor"]

# Waiting for a more stable version of the software, we allow some dead code and
# unused variables.
Expand Down
1 change: 1 addition & 0 deletions bash_scripts/setup/99-ttyusb.rules
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
KERNEL=="ttyUSB0", GROUP="${USER}", MODE="0666"
Loading
Loading