From 40493c1d06b9c5b2e4d86fcb3353dd5b8d874bf4 Mon Sep 17 00:00:00 2001 From: mitchmindtree Date: Wed, 17 Jan 2024 17:37:35 +1100 Subject: [PATCH] Update nannou crate versions to 0.19.0 --- examples/Cargo.toml | 12 ++++++------ generative_design/Cargo.toml | 2 +- guide/book_tests/Cargo.toml | 4 ++-- nannou/Cargo.toml | 8 ++++---- nannou_audio/Cargo.toml | 2 +- nannou_core/Cargo.toml | 2 +- nannou_egui/Cargo.toml | 6 +++--- nannou_egui_demo_app/Cargo.toml | 6 +++--- nannou_isf/Cargo.toml | 4 ++-- nannou_laser/Cargo.toml | 2 +- nannou_mesh/Cargo.toml | 4 ++-- nannou_new/Cargo.toml | 2 +- nannou_osc/Cargo.toml | 2 +- nannou_package/Cargo.toml | 2 +- nannou_wgpu/Cargo.toml | 2 +- nature_of_code/Cargo.toml | 2 +- 16 files changed, 31 insertions(+), 31 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 943933f9e..50c2c7b36 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -17,12 +17,12 @@ edition = "2018" audrey = "0.3" hotglsl = { git = "https://github.com/nannou-org/hotglsl", branch = "master" } hrtf = "0.2" -nannou = { version ="0.18.0", path = "../nannou" } -nannou_audio = { version ="0.18.0", path = "../nannou_audio" } -nannou_egui = { version = "0.5.0", path = "../nannou_egui" } -nannou_isf = { version = "0.1.0", path = "../nannou_isf" } -nannou_laser = { version ="0.18.0", features = ["ffi", "ilda-idtf"], path = "../nannou_laser" } -nannou_osc = { version ="0.18.0", path = "../nannou_osc" } +nannou = { version ="0.19.0", path = "../nannou" } +nannou_audio = { version ="0.19.0", path = "../nannou_audio" } +nannou_egui = { version ="0.19.0", path = "../nannou_egui" } +nannou_isf = { version ="0.19.0", path = "../nannou_isf" } +nannou_laser = { version ="0.19.0", features = ["ffi", "ilda-idtf"], path = "../nannou_laser" } +nannou_osc = { version ="0.19.0", path = "../nannou_osc" } pitch_calc = { version = "0.12", features = ["serde"] } time_calc = { version= "0.13", features = ["serde"] } walkdir = "2" diff --git a/generative_design/Cargo.toml b/generative_design/Cargo.toml index 4d0cb3291..d4f016402 100644 --- a/generative_design/Cargo.toml +++ b/generative_design/Cargo.toml @@ -14,7 +14,7 @@ homepage = "https://github.com/nannou-org/nannou" edition = "2018" [dev-dependencies] -nannou = { version ="0.18.0", path = "../nannou" } +nannou = { version ="0.19.0", path = "../nannou" } usvg = "0.4" wikipedia = "0.3" diff --git a/guide/book_tests/Cargo.toml b/guide/book_tests/Cargo.toml index 8f508c04c..32bcd83d1 100644 --- a/guide/book_tests/Cargo.toml +++ b/guide/book_tests/Cargo.toml @@ -16,6 +16,6 @@ skeptic = { git = "https://github.com/mitchmindtree/rust-skeptic", branch = "1.4 # https://github.com/budziq/rust-skeptic/pull/121 skeptic = { git = "https://github.com/mitchmindtree/rust-skeptic", branch = "1.45-extern" } #skeptic = "0.13" -nannou = { version ="0.18.0", path = "../../nannou" } -nannou_osc = { version ="0.18.0", path = "../../nannou_osc" } +nannou = { version ="0.19.0", path = "../../nannou" } +nannou_osc = { version ="0.19.0", path = "../../nannou_osc" } diff --git a/nannou/Cargo.toml b/nannou/Cargo.toml index 984ab86ac..c7c5b63e5 100644 --- a/nannou/Cargo.toml +++ b/nannou/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nannou" -version = "0.18.1" +version ="0.19.0" authors = ["mitchmindtree "] description = "A Creative Coding Framework for Rust." readme = "README.md" @@ -17,9 +17,9 @@ getrandom = "0.2.3" image = "0.23" instant = "0.1.9" lyon = "0.17" -nannou_core = { version ="0.18.0", path = "../nannou_core", features = ["std", "serde"] } -nannou_mesh = { version ="0.18.0", path = "../nannou_mesh", features = ["serde1"] } -nannou_wgpu = { version ="0.18.0", path = "../nannou_wgpu", features = ["capturer"] } +nannou_core = { version ="0.19.0", path = "../nannou_core", features = ["std", "serde"] } +nannou_mesh = { version ="0.19.0", path = "../nannou_mesh", features = ["serde1"] } +nannou_wgpu = { version ="0.19.0", path = "../nannou_wgpu", features = ["capturer"] } noise = "0.7" notosans = { version = "0.1", optional = true } num_cpus = "1" diff --git a/nannou_audio/Cargo.toml b/nannou_audio/Cargo.toml index 56553a02b..c99e7453a 100644 --- a/nannou_audio/Cargo.toml +++ b/nannou_audio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nannou_audio" -version ="0.18.0" +version ="0.19.0" authors = ["mitchmindtree "] description = "The audio API for Nannou, the creative coding framework." readme = "README.md" diff --git a/nannou_core/Cargo.toml b/nannou_core/Cargo.toml index 8cbdd3896..cd9d62211 100644 --- a/nannou_core/Cargo.toml +++ b/nannou_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nannou_core" -version ="0.18.0" +version ="0.19.0" authors = ["mitchmindtree "] description = "The core components of nannou - a creative coding framework for Rust. Ideal for libraries and headless/embedded applications that use nannou." readme = "README.md" diff --git a/nannou_egui/Cargo.toml b/nannou_egui/Cargo.toml index 5f8f98492..1c59a1931 100644 --- a/nannou_egui/Cargo.toml +++ b/nannou_egui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nannou_egui" -version = "0.5.0" +version ="0.19.0" authors = [ "Alexandru Ene ", "mitchmindtree ", @@ -15,7 +15,7 @@ readme = "../README.md" egui-wgpu = "0.23" egui = "0.23" winit = "0.28" -nannou = { version = "0.18.1", path = "../nannou" } +nannou = { version ="0.19.0", path = "../nannou" } [features] -wayland = [] \ No newline at end of file +wayland = [] diff --git a/nannou_egui_demo_app/Cargo.toml b/nannou_egui_demo_app/Cargo.toml index 60cb783a5..795be31c8 100644 --- a/nannou_egui_demo_app/Cargo.toml +++ b/nannou_egui_demo_app/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "nannou_egui_demo_app" -version = "0.1.0" +version ="0.19.0" authors = ["mitchmindtree "] edition = "2018" publish = false [dependencies] -nannou_egui = { version = "0.5", path = "../nannou_egui" } -nannou = { version = "0.18.1", path = "../nannou" } +nannou_egui = { version ="0.19.0", path = "../nannou_egui" } +nannou = { version ="0.19.0", path = "../nannou" } egui_demo_lib = "0.23" diff --git a/nannou_isf/Cargo.toml b/nannou_isf/Cargo.toml index 475fef286..bfc93c16f 100644 --- a/nannou_isf/Cargo.toml +++ b/nannou_isf/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "nannou_isf" -version = "0.1.0" +version ="0.19.0" authors = ["mitchmindtree "] edition = "2018" [dependencies] hotglsl = { git = "https://github.com/nannou-org/hotglsl", branch = "master" } isf = { git = "https://github.com/nannou-org/isf", branch = "master" } -nannou = { version ="0.18.0", path = "../nannou", features = ["spirv"] } +nannou = { version ="0.19.0", path = "../nannou", features = ["spirv"] } thiserror = "1" threadpool = "1" walkdir = "2" diff --git a/nannou_laser/Cargo.toml b/nannou_laser/Cargo.toml index 553a0e65d..9c0844ed9 100644 --- a/nannou_laser/Cargo.toml +++ b/nannou_laser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nannou_laser" -version ="0.18.0" +version ="0.19.0" authors = ["mitchmindtree "] description = "A cross-platform laser DAC detection and streaming API." edition = "2018" diff --git a/nannou_mesh/Cargo.toml b/nannou_mesh/Cargo.toml index 57a5f6421..3f83c7809 100644 --- a/nannou_mesh/Cargo.toml +++ b/nannou_mesh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nannou_mesh" -version ="0.18.0" +version ="0.19.0" authors = ["mitchmindtree "] description = "The mesh abstraction shared between nannou's `Draw` and `Ui` abstractions." readme = "README.md" @@ -10,7 +10,7 @@ homepage = "https://nannou.cc" edition = "2018" [dependencies] -nannou_core = { version ="0.18.0", path = "../nannou_core" } +nannou_core = { version ="0.19.0", path = "../nannou_core" } serde = { version = "1", optional = true, features = ["derive"] } [features] diff --git a/nannou_new/Cargo.toml b/nannou_new/Cargo.toml index e5bb73148..92bd3b08c 100644 --- a/nannou_new/Cargo.toml +++ b/nannou_new/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nannou_new" -version ="0.18.0" +version ="0.19.0" authors = ["mitchmindtree "] description = "A tool for easily starting Nannou projects." readme = "README.md" diff --git a/nannou_osc/Cargo.toml b/nannou_osc/Cargo.toml index c5142d3c5..b5280e89b 100644 --- a/nannou_osc/Cargo.toml +++ b/nannou_osc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nannou_osc" -version ="0.18.0" +version ="0.19.0" authors = ["mitchmindtree "] description = "The OSC API for Nannou, the creative coding framework." readme = "README.md" diff --git a/nannou_package/Cargo.toml b/nannou_package/Cargo.toml index 733aa2623..fb3b0406b 100644 --- a/nannou_package/Cargo.toml +++ b/nannou_package/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nannou_package" -version ="0.18.0" +version ="0.19.0" authors = ["mitchmindtree "] description = "The build packaging tool for the Nannou Creative Coding Framework." readme = "README.md" diff --git a/nannou_wgpu/Cargo.toml b/nannou_wgpu/Cargo.toml index a441ea97e..d1f32ae75 100644 --- a/nannou_wgpu/Cargo.toml +++ b/nannou_wgpu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nannou_wgpu" -version = "0.18.0" +version ="0.19.0" authors = ["mitchmindtree "] description = "Items related to wgpu and its integration in nannou - a creative coding framework for Rust." readme = "README.md" diff --git a/nature_of_code/Cargo.toml b/nature_of_code/Cargo.toml index aef3faa1a..fc2eb9e5c 100644 --- a/nature_of_code/Cargo.toml +++ b/nature_of_code/Cargo.toml @@ -14,7 +14,7 @@ homepage = "https://github.com/nannou-org/nannou" edition = "2018" [dev-dependencies] -nannou = { version ="0.18.0", path = "../nannou" } +nannou = { version ="0.19.0", path = "../nannou" } # Chapter 1 Vectors [[example]]