Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
uklotzde committed Jul 31, 2024
1 parent ea40e59 commit 9299f4e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .justfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ setup:
# Upgrade (and update) dependencies
upgrade: setup
pre-commit autoupdate
cargo upgrade --incompatible --pinned
cargo upgrade --ignore-rust-version --incompatible --pinned
cargo update

# Run pre-commit hooks
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ repos:
- id: codespell
args: [--ignore-words=.codespellignore]
- repo: https://github.com/sirosen/check-jsonschema
rev: 0.28.5
rev: 0.29.1
hooks:
- id: check-github-actions
- id: check-github-workflows
Expand Down Expand Up @@ -74,7 +74,7 @@ repos:
- yaml
# https://reuse.software
- repo: https://github.com/fsfe/reuse-tool
rev: v3.1.0a1
rev: v4.0.3
hooks:
- id: reuse
- repo: local
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "README.md"
repository = "https://github.com/uklotzde/djio"
keywords = ["dj", "controller", "midi", "hid"]
categories = ["hardware-support"]
rust-version = "1.75"
rust-version = "1.80"
edition = "2021"
include = ["README.md", "LICENSES", "src/"]

Expand All @@ -25,14 +25,14 @@ 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.21"
strum = { version = "0.26.2", features = ["derive"] }
thiserror = "1.0.61"
log = "0.4.22"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1.0.63"

# Optional dependencies
discro = { version = "0.29.3", optional = true }
midir = { version = "0.10.0", optional = true }
tokio = { version = "1.38.0", default-features = false, optional = true }
tokio = { version = "1.39.2", default-features = false, optional = true }

# Optional dependencies (experimental features)
crossbeam-utils = { version = "0.8.20", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion examples/midi_dj_controller_hotplug.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ where

#[derive(Debug, Clone)]
pub struct LoggingInputPortEventSink {
port_index: PortIndex,
pub port_index: PortIndex,
}

impl ControlInputEventSink for LoggingInputPortEventSink {
Expand Down

0 comments on commit 9299f4e

Please sign in to comment.