-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Billy Messenger
authored and
Billy Messenger
committed
Sep 13, 2023
1 parent
7a1a5e4
commit 75020d7
Showing
4 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "creek" | ||
version = "1.1.0" | ||
version = "1.1.1" | ||
authors = ["Billy Messenger <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -57,9 +57,9 @@ decode-all = [ | |
encode-wav = ["creek-encode-wav"] | ||
|
||
[dependencies] | ||
creek-core = { version = "0.1", path = "core" } | ||
creek-decode-symphonia = { version = "0.2.0", path = "decode_symphonia", optional = true } | ||
creek-encode-wav = { version = "0.1.0", path = "encode_wav", optional = true } | ||
creek-core = { version = "0.1.1", path = "core" } | ||
creek-decode-symphonia = { version = "0.2.1", path = "decode_symphonia", optional = true } | ||
creek-encode-wav = { version = "0.1.1", path = "encode_wav", optional = true } | ||
|
||
# Unoptimized builds result in prominent gaps of silence after cache misses in the demo player. | ||
[profile.dev] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "creek-core" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["Billy Messenger <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "creek-decode-symphonia" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Billy Messenger <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -14,7 +14,7 @@ repository = "https://github.com/RustyDAW/creek" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
creek-core = { version = "0.1", path = "../core" } | ||
creek-core = { version = "0.1.1", path = "../core" } | ||
log = "0.4" | ||
symphonia = "0.5" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "creek-encode-wav" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["Billy Messenger <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -13,5 +13,5 @@ repository = "https://github.com/RustyDAW/creek" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
creek-core = { version = "0.1", path = "../core" } | ||
creek-core = { version = "0.1.1", path = "../core" } | ||
byte-slice-cast = "1.0.0" |