From ed0c50b71ada58a6831d12f8ea836f2c964f7a03 Mon Sep 17 00:00:00 2001 From: Qichao Lan Date: Mon, 10 Jun 2024 14:27:08 +0200 Subject: [PATCH] use atomic float v1.0.0 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- plugins/diopser/Cargo.toml | 2 +- plugins/examples/gain_gui_egui/Cargo.toml | 2 +- plugins/examples/gain_gui_iced/Cargo.toml | 2 +- plugins/examples/gain_gui_vizia/Cargo.toml | 2 +- plugins/spectral_compressor/Cargo.toml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1df20a6b3..c64d1ebf4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -548,9 +548,9 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "atomic_float" -version = "0.1.0" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62af46d040ba9df09edc6528dae9d8e49f5f3e82f55b7d2ec31a733c38dbc49d" +checksum = "3c4b08ed8a30ff7320117c190eb4d73d47f0ac0c930ab853b8224cef7cd9a5e7" [[package]] name = "atomic_refcell" diff --git a/Cargo.toml b/Cargo.toml index 1d10163b2..1464638dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,7 @@ nih_plug_derive = { path = "nih_plug_derive" } anyhow = "1.0" anymap = "1.0.0-beta.2" -atomic_float = "0.1" +atomic_float = "1.0.0" atomic_refcell = "0.1" backtrace = "0.3.65" bitflags = "1.3" diff --git a/plugins/diopser/Cargo.toml b/plugins/diopser/Cargo.toml index d6703970c..20e727cfa 100644 --- a/plugins/diopser/Cargo.toml +++ b/plugins/diopser/Cargo.toml @@ -19,7 +19,7 @@ simd = ["nih_plug/simd"] nih_plug = { path = "../../", features = ["assert_process_allocs"] } nih_plug_vizia = { path = "../../nih_plug_vizia" } -atomic_float = "0.1" +atomic_float = "1.0.0" semver = "1.0.14" # For the GUI diff --git a/plugins/examples/gain_gui_egui/Cargo.toml b/plugins/examples/gain_gui_egui/Cargo.toml index 7b9f9ef79..11e52c8c2 100644 --- a/plugins/examples/gain_gui_egui/Cargo.toml +++ b/plugins/examples/gain_gui_egui/Cargo.toml @@ -15,4 +15,4 @@ crate-type = ["cdylib", "lib"] nih_plug = { path = "../../../", features = ["assert_process_allocs", "standalone"] } nih_plug_egui = { path = "../../../nih_plug_egui" } -atomic_float = "0.1" +atomic_float = "1.0.0" diff --git a/plugins/examples/gain_gui_iced/Cargo.toml b/plugins/examples/gain_gui_iced/Cargo.toml index ea4f8f3b1..0950c3c99 100644 --- a/plugins/examples/gain_gui_iced/Cargo.toml +++ b/plugins/examples/gain_gui_iced/Cargo.toml @@ -14,4 +14,4 @@ crate-type = ["cdylib"] nih_plug = { path = "../../../", features = ["assert_process_allocs"] } nih_plug_iced = { path = "../../../nih_plug_iced" } -atomic_float = "0.1" +atomic_float = "1.0.0" diff --git a/plugins/examples/gain_gui_vizia/Cargo.toml b/plugins/examples/gain_gui_vizia/Cargo.toml index a3b233576..920719522 100644 --- a/plugins/examples/gain_gui_vizia/Cargo.toml +++ b/plugins/examples/gain_gui_vizia/Cargo.toml @@ -15,4 +15,4 @@ crate-type = ["cdylib", "lib"] nih_plug = { path = "../../../", features = ["standalone"] } nih_plug_vizia = { path = "../../../nih_plug_vizia" } -atomic_float = "0.1" +atomic_float = "1.0.0" diff --git a/plugins/spectral_compressor/Cargo.toml b/plugins/spectral_compressor/Cargo.toml index a87e5a8f4..6db59cd97 100644 --- a/plugins/spectral_compressor/Cargo.toml +++ b/plugins/spectral_compressor/Cargo.toml @@ -16,7 +16,7 @@ nih_plug_vizia = { path = "../../nih_plug_vizia" } realfft = "3.0" # For the GUI -atomic_float = "0.1" +atomic_float = "1.0.0" crossbeam = "0.8" open = "3.0" serde = { version = "1.0", features = ["derive"] }