-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(taiko): rewrite sound player with kira
- Loading branch information
1 parent
b6a6504
commit 5a07656
Showing
4 changed files
with
103 additions
and
289 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,7 +1,7 @@ | ||
[package] | ||
name = "taiko-game" | ||
description = "A taiko game written in Rust." | ||
version = "0.0.2" | ||
version = "0.0.3" | ||
license = "MIT" | ||
authors = ["JacobLinCool <[email protected]>"] | ||
homepage = "https://github.com/JacobLinCool/rhythm-rs" | ||
|
@@ -40,10 +40,9 @@ tokio-util = "0.7.9" | |
tracing = "0.1.37" | ||
tracing-error = "0.2.0" | ||
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "serde"] } | ||
rodio = "0.17.3" | ||
cpal = "0.15.3" | ||
anyhow = "1.0.82" | ||
encoding_rs = "0.8.34" | ||
kira = "0.8.7" | ||
|
||
[build-dependencies] | ||
vergen = { version = "8.3.1", features = [ "build", "git", "gitoxide", "cargo" ]} |
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
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 |
---|---|---|
|
@@ -6,7 +6,6 @@ pub mod action; | |
pub mod app; | ||
pub mod assets; | ||
pub mod cli; | ||
pub mod sound; | ||
pub mod tui; | ||
pub mod utils; | ||
|
||
|
Oops, something went wrong.