Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minor fixes and updating #9

Merged
merged 6 commits into from
Apr 14, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
set 2021 edition
  • Loading branch information
joseluis committed Apr 13, 2023
commit 01715bd03a4270cd8e88c35451a714607f51e82d
2 changes: 1 addition & 1 deletion examples/app_gtk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "freeverb-gtk"
version = "0.1.0"
authors = ["irh <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
audio_module = { path = "../../src/audio_module" }
Expand Down
2 changes: 1 addition & 1 deletion examples/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "freeverb-wasm"
version = "0.0.1"
authors = ["Ian Hobson <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
freeverb = { path = "../../src/freeverb" }
Expand Down
2 changes: 1 addition & 1 deletion src/audio_module/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "audio_module"
version = "0.0.1"
edition = "2018"
edition = "2021"

[dependencies]
2 changes: 1 addition & 1 deletion src/clib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "freeverb-clib"
version = "0.0.1"
authors = ["Ian Hobson <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
freeverb = { path = "../freeverb" }
Expand Down
2 changes: 1 addition & 1 deletion src/freeverb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
name = "freeverb"
version = "0.1.0"
authors = ["irh <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
2 changes: 1 addition & 1 deletion src/freeverb_module/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "freeverb_module"
version = "0.1.0"
authors = ["irh <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
audio_module = { path = "../audio_module" }
Expand Down