From 7dc2b169046675f51f3a63d0e7fd76083ff7f13f Mon Sep 17 00:00:00 2001 From: Esther Alter Date: Tue, 10 Dec 2024 10:48:22 -0500 Subject: [PATCH] updated for rust 1.8.3 --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 6 +++--- common/src/u64_or_f32.rs | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ebd9e3a..071a1f3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "adler" @@ -106,7 +106,7 @@ dependencies = [ [[package]] name = "audio" -version = "0.2.7" +version = "0.2.8" dependencies = [ "chrono", "common", @@ -243,7 +243,7 @@ checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" [[package]] name = "cacophony" -version = "0.2.7" +version = "0.2.8" dependencies = [ "audio", "clap", @@ -396,7 +396,7 @@ dependencies = [ [[package]] name = "common" -version = "0.2.7" +version = "0.2.8" dependencies = [ "clap", "directories", @@ -1133,7 +1133,7 @@ dependencies = [ [[package]] name = "input" -version = "0.2.7" +version = "0.2.8" dependencies = [ "clap", "common", @@ -1160,7 +1160,7 @@ dependencies = [ [[package]] name = "io" -version = "0.2.7" +version = "0.2.8" dependencies = [ "audio", "common", @@ -1964,7 +1964,7 @@ checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" [[package]] name = "render" -version = "0.2.7" +version = "0.2.8" dependencies = [ "audio", "colorgrad", @@ -2309,7 +2309,7 @@ dependencies = [ [[package]] name = "text" -version = "0.2.7" +version = "0.2.8" dependencies = [ "common", "csv", diff --git a/Cargo.toml b/Cargo.toml index 1e1b172..7c86c00 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ members = ["audio", "common", "input", "io", "render", "text"] [workspace.package] -version = "0.2.7" +version = "0.2.8" authors = ["Esther Alter "] description = "A minimalist and ergonomic MIDI sequencer" documentation = "https://github.com/subalterngames/cacophony" @@ -84,7 +84,7 @@ speech_dispatcher_0_9 = ["text/speech_dispatcher_0_9"] [package] name = "cacophony" -version = "0.2.7" +version = "0.2.8" authors = ["Esther Alter "] description = "A minimalist and ergonomic MIDI sequencer" documentation = "https://github.com/subalterngames/cacophony" @@ -120,7 +120,7 @@ path = "text" name = "Cacophony" identifier = "com.subalterngames.cacophony" icon = ["icon/32.png", "icon/64.png", "icon/128.png", "icon/256.png"] -version = "0.2.7" +version = "0.2.8" resources = ["data/*"] copyright = "Copyright (c) Subaltern Games LLC 2023. All rights reserved." short_description = "A minimalist and ergonomic MIDI sequencer." diff --git a/common/src/u64_or_f32.rs b/common/src/u64_or_f32.rs index b84b75e..171a518 100644 --- a/common/src/u64_or_f32.rs +++ b/common/src/u64_or_f32.rs @@ -61,7 +61,7 @@ impl Serialize for U64orF32 { } } -impl<'de> Visitor<'de> for U64orF32 { +impl Visitor<'_> for U64orF32 { type Value = Self; fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {