Skip to content

Commit 57c2e76

Browse files
committed
Upgrade to Rust v1.82
1 parent 6315266 commit 57c2e76

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

Cargo.toml

+1-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ readme = "README.md"
1010
repository = "https://github.com/uklotzde/djio"
1111
keywords = ["dj", "controller", "midi", "hid"]
1212
categories = ["hardware-support"]
13-
rust-version = "1.80"
13+
rust-version = "1.82"
1414
edition = "2021"
1515
include = ["README.md", "LICENSES", "src/"]
1616

@@ -27,9 +27,6 @@ futures-core = { version = "0.3.31", default-features = false }
2727
futures-util = { version = "0.3.31", default-features = false, features = [
2828
"std",
2929
] }
30-
# TODO: Replace with std when available.
31-
# Tracking issue for RFC 2351: <https://github.com/rust-lang/rust/issues/53485>
32-
is_sorted = "0.1.1"
3330
log = "0.4.22"
3431
strum = { version = "0.26.3", features = ["derive"] }
3532
thiserror = "1.0.64"

src/input/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ use std::{
1111
};
1212

1313
use float_cmp::approx_eq;
14-
use is_sorted::IsSorted as _;
1514
use strum::FromRepr;
1615

1716
use crate::{Control, ControlValue, TimeStamp};

0 commit comments

Comments
 (0)