Skip to content

Commit

Permalink
Update nannou crate versions to 0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchmindtree committed Jan 17, 2024
1 parent 390613a commit 40493c1
Show file tree
Hide file tree
Showing 16 changed files with 31 additions and 31 deletions.
12 changes: 6 additions & 6 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion generative_design/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions guide/book_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

8 changes: 4 additions & 4 deletions nannou/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou"
version = "0.18.1"
version ="0.19.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
description = "A Creative Coding Framework for Rust."
readme = "README.md"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion nannou_audio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou_audio"
version ="0.18.0"
version ="0.19.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
description = "The audio API for Nannou, the creative coding framework."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion nannou_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou_core"
version ="0.18.0"
version ="0.19.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
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"
Expand Down
6 changes: 3 additions & 3 deletions nannou_egui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou_egui"
version = "0.5.0"
version ="0.19.0"
authors = [
"Alexandru Ene <alex.ene0x11@gmail.com>",
"mitchmindtree <mitchell.nordine@gmail.com>",
Expand All @@ -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 = []
wayland = []
6 changes: 3 additions & 3 deletions nannou_egui_demo_app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "nannou_egui_demo_app"
version = "0.1.0"
version ="0.19.0"
authors = ["mitchmindtree <mail@mitchellnordine.com>"]
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"
4 changes: 2 additions & 2 deletions nannou_isf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "nannou_isf"
version = "0.1.0"
version ="0.19.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
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"
2 changes: 1 addition & 1 deletion nannou_laser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou_laser"
version ="0.18.0"
version ="0.19.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
description = "A cross-platform laser DAC detection and streaming API."
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions nannou_mesh/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou_mesh"
version ="0.18.0"
version ="0.19.0"
authors = ["mitchmindtree <mail@mitchellnordine.com>"]
description = "The mesh abstraction shared between nannou's `Draw` and `Ui` abstractions."
readme = "README.md"
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion nannou_new/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou_new"
version ="0.18.0"
version ="0.19.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
description = "A tool for easily starting Nannou projects."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion nannou_osc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou_osc"
version ="0.18.0"
version ="0.19.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
description = "The OSC API for Nannou, the creative coding framework."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion nannou_package/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou_package"
version ="0.18.0"
version ="0.19.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
description = "The build packaging tool for the Nannou Creative Coding Framework."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion nannou_wgpu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou_wgpu"
version = "0.18.0"
version ="0.19.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
description = "Items related to wgpu and its integration in nannou - a creative coding framework for Rust."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion nature_of_code/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down

0 comments on commit 40493c1

Please sign in to comment.