Implemented radio player and partially some other players #6

Merged
HLadislav merged 21 commits from player into main 2025-01-26 21:57:27 +00:00
3 changed files with 2567 additions and 61 deletions
Showing only changes of commit 13d7f48c3d - Show all commits

2622
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -19,6 +19,8 @@ chrono = "0.4.38"
sqlx = {version="0.8.2", features=["runtime-tokio", "sqlite"]} sqlx = {version="0.8.2", features=["runtime-tokio", "sqlite"]}
form_urlencoded = "1.2.1" form_urlencoded = "1.2.1"
tenorv2 = { path = "./tenor-v2/tenorv2" } tenorv2 = { path = "./tenor-v2/tenorv2" }
librespot = { version = "0.6.0", default-features = false, features = ["rodio-backend"] }
songbird = "0.4.6"
[features] [features]
DEBUG = [] DEBUG = []

View file

@ -1,11 +1,11 @@
dev: dev:
cargo build --features DEBUG cargo build --features DEBUG,GUILD_COMMAND
release: release:
cargo build --release --features RELEASE cargo build --release --features RELEASE
run: run:
cargo build --features DEBUG cargo build --features DEBUG,GUILD_COMMAND
./target/debug/moover_rust ./target/debug/moover_rust
run_rel: run_rel: