Skip to content

Commit

Permalink
Update discro dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
uklotzde committed Aug 31, 2023
1 parent c869a34 commit 3cc8c20
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[package]
name = "djio"
description = "DJ Hardware Control(ler) Support"
version = "0.0.14"
version = "0.0.15"
license = "MPL-2.0"
readme = "README.md"
repository = "https://github.com/uklotzde/djio"
Expand All @@ -25,7 +25,7 @@ strum = { version = "0.25.0", features = ["derive"] }
thiserror = "1.0.47"

# Optional dependencies
discro = { version = "0.12.0", optional = true }
discro = { version = "0.15.0", optional = true }
midir = { version = "0.9.1", optional = true }
tokio = { version = "1.32.0", default-features = false, optional = true }

Expand Down
2 changes: 1 addition & 1 deletion src/output/blinking_led_task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use crate::{BlinkingLedOutput, BlinkingLedTicker};
#[allow(clippy::manual_async_fn)] // Explicit return type to to enforce the trait bounds
pub fn blinking_led_task(
period: Duration,
mut publisher: Publisher<BlinkingLedOutput>,
publisher: Publisher<BlinkingLedOutput>,
) -> impl Future<Output = ()> + Send + 'static {
async move {
let mut ticker = BlinkingLedTicker::default();
Expand Down

0 comments on commit 3cc8c20

Please sign in to comment.