From bbdcfdd6f215932959d7fc5d67204d7dfdbe3450 Mon Sep 17 00:00:00 2001 From: talwat <83217276+talwat@users.noreply.github.com> Date: Wed, 12 Mar 2025 14:28:05 +0100 Subject: [PATCH] chore: bump version --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/player.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3ee8481..3ab9620 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1453,7 +1453,7 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" [[package]] name = "lowfi" -version = "1.6.2-dev" +version = "1.6.3-dev" dependencies = [ "Inflector", "arc-swap", diff --git a/Cargo.toml b/Cargo.toml index 1abeeac..a734da8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lowfi" -version = "1.6.2-dev" +version = "1.6.3-dev" edition = "2021" description = "An extremely simple lofi player." license = "MIT" diff --git a/src/player.rs b/src/player.rs index 9b9300c..df59c98 100644 --- a/src/player.rs +++ b/src/player.rs @@ -69,7 +69,7 @@ pub enum Messages { } /// The time to wait in between errors. -const TIMEOUT: Duration = Duration::from_secs(1); +const TIMEOUT: Duration = Duration::from_secs(3); /// The amount of songs to buffer up. const BUFFER_SIZE: usize = 5;