Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
uklotzde committed May 7, 2024
1 parent dc194ca commit 083187b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 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.14.0
rev: v9.16.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.28.1
rev: 0.28.2
hooks:
- id: check-github-actions
- id: check-github-workflows
Expand Down
23 changes: 13 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ edition = "2021"
include = ["README.md", "LICENSES", "src/"]

[dependencies]
anyhow = "1.0.79"
anyhow = "1.0.83"
derive_more = "0.99.17"
float-cmp = "0.9.0"
futures-core = { version = "0.3.30", default-features = false }
Expand All @@ -25,26 +25,26 @@ futures-util = { version = "0.3.30", default-features = false, features = [
# TODO: Replace with std when available.
# Tracking issue for RFC 2351: <https://github.com/rust-lang/rust/issues/53485>
is_sorted = "0.1.1"
log = "0.4.20"
strum = { version = "0.26.1", features = ["derive"] }
thiserror = "1.0.56"
log = "0.4.21"
strum = { version = "0.26.2", features = ["derive"] }
thiserror = "1.0.60"

# Optional dependencies
discro = { version = "0.29.0", optional = true }
midir = { version = "0.9.1", optional = true }
tokio = { version = "1.36.0", default-features = false, optional = true }
discro = { version = "0.29.2", optional = true }
midir = { version = "0.10.0", optional = true }
tokio = { version = "1.37.0", default-features = false, optional = true }

# Optional dependencies (experimental features)
crossbeam-utils = { version = "0.8.19", 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.0", optional = true }
hidapi = { version = "2.6.1", optional = true }

[dev-dependencies]
anyhow = "1.0.79"
hidapi = "2.6.0"
anyhow = "1.0.83"
hidapi = "2.6.1"
pretty_env_logger = "0.5.0"

[features]
Expand Down Expand Up @@ -97,6 +97,9 @@ clone_on_ref_ptr = "warn"
missing_const_for_fn = "warn"
self_named_module_files = "warn"

# Workaround for <https://github.com/rust-lang/rust-clippy/issues/12270>
lint_groups_priority = "allow"

# Repetitions of module/type names occur frequently when using many
# modules for keeping the size of the source files handy. Often
# types have the same name as their parent module.
Expand Down

0 comments on commit 083187b

Please sign in to comment.