Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: install system dependencies
run: sudo apt-get update && sudo apt-get install libdbus-1-dev libusb-1.0-0-dev
run: sudo apt-get update && sudo apt-get install libdbus-1-dev libudev-dev libusb-1.0-0-dev
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
Expand All @@ -44,7 +44,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: install system dependencies
run: sudo apt-get update && sudo apt-get install libdbus-1-dev libusb-1.0-0-dev
run: sudo apt-get update && sudo apt-get install libdbus-1-dev libudev-dev libusb-1.0-0-dev
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
Expand Down
16 changes: 14 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
/.cargo/
/debian/files
debian/*
!debian/*.install
!debian/*.postinst
!debian/*.postrm
!debian/*.preinst
!debian/*.service
!debian/*.triggers
!debian/changelog
!debian/control
!debian/copyright
!debian/postinst
!debian/rules
!debian/source
/target/
/vendor/
vendor.tar.xz
vendor.*
5 changes: 3 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"rust-analyzer.checkOnSave.command": "clippy"
}
"rust-analyzer.checkOnSave.command": "clippy",
"rust-analyzer.checkOnSave.extraArgs": ["--", "-W", "clippy::pedantic"],
}
Loading