diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4ef7450..cdc7df1 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -25,7 +25,7 @@ repos: - id: mixed-line-ending - id: trailing-whitespace - repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook - rev: v9.16.0 + rev: v9.17.0 hooks: - id: commitlint stages: @@ -45,7 +45,7 @@ repos: - id: codespell args: [--ignore-words=.codespellignore] - repo: https://github.com/sirosen/check-jsonschema - rev: 0.29.1 + rev: 0.29.2 hooks: - id: check-github-actions - id: check-github-workflows diff --git a/Cargo.toml b/Cargo.toml index 84c9776..f2c5f87 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,12 @@ include = ["README.md", "LICENSES", "src/"] [dependencies] anyhow = "1.0.86" -derive_more = "0.99.18" +derive_more = { version = "1.0.0", features = [ + "display", + "from", + "deref", + "deref_mut", +] } float-cmp = "0.9.0" futures-core = { version = "0.3.30", default-features = false } futures-util = { version = "0.3.30", default-features = false, features = [ @@ -32,7 +37,7 @@ thiserror = "1.0.63" # Optional dependencies discro = { version = "0.29.3", optional = true } midir = { version = "0.10.0", optional = true } -tokio = { version = "1.39.2", default-features = false, optional = true } +tokio = { version = "1.40.0", default-features = false, optional = true } # Optional dependencies (experimental features) crossbeam-utils = { version = "0.8.20", optional = true } @@ -40,11 +45,11 @@ enum-as-inner = { version = "0.6.0", optional = true } # Target dependent dependencies [target.'cfg(not(target_family = "wasm"))'.dependencies] -hidapi = { version = "2.6.1", optional = true } +hidapi = { version = "2.6.3", optional = true } [dev-dependencies] anyhow = "1.0.86" -hidapi = "2.6.1" +hidapi = "2.6.3" pretty_env_logger = "0.5.0" [features]