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
5 changes: 2 additions & 3 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,15 @@ jobs:
sudo apt-get install -y libdbus-1-dev
- name: Set toolchain version
run: |
rustup override set 1.76
rustup override set 1.84
rustup component add rustfmt
- name: cargo check
run: cargo check ${{ matrix.features }}
- name: cargo fmt
run: cargo fmt --all -- --check
- name: cargo clippy
run: |
rustup override set 1.80
rustup component add clippy
cargo clippy -- -D warnings
- name: cargo test
run: cargo +1.76.0 test ${{ matrix.features }}
run: cargo test ${{ matrix.features }}
4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = ["Adam McQuilkin"]
readme = "README.md"
license = "GPL-3.0"
version = "0.1.7"
rust-version = "1.76"
rust-version = "1.84"
edition = "2021"

[lib]
Expand Down Expand Up @@ -54,8 +54,6 @@ walkdir = { version = "2.5.0", optional = true }

[dependencies]
futures-util = "0.3.31"
#TODO: remove indexmap after moving to rust 1.84+. It's listed here only to lock the version.
indexmap = "=2.11.0"
rand = "0.9.0"
tokio = { version = "1.43.0", features = ["full"], optional = true }
tokio-serial = { version = "5.4.5", optional = true }
Expand Down
Loading