Skip to content

Commit

Permalink
Update dependencies and pre-commit hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
uklotzde committed Sep 2, 2024
1 parent 9299f4e commit f2b2c76
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
13 changes: 9 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -32,19 +37,19 @@ 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 }
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]
Expand Down

0 comments on commit f2b2c76

Please sign in to comment.