mirror of
https://github.com/eRgo35/lyra.git
synced 2026-02-04 20:36:10 +01:00
Compare commits
7 Commits
release-pl
...
e20a98f378
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e20a98f378 | ||
| 66052e4f74 | |||
| 09b0d6fd9d | |||
| c27d1f70da | |||
| 73b885e5d6 | |||
| 8c0eb62d41 | |||
| 5bc86aca2b |
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.10.7](https://github.com/eRgo35/lyra/compare/v0.10.6...v0.10.7) - 2024-08-16
|
||||
|
||||
### Other
|
||||
- update Cargo.lock dependencies
|
||||
|
||||
## [0.10.4](https://github.com/eRgo35/lyra/compare/v0.10.3...v0.10.4) - 2024-08-13
|
||||
|
||||
### Fixed
|
||||
|
||||
7
Cargo.lock
generated
7
Cargo.lock
generated
@@ -1311,7 +1311,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "lyra"
|
||||
version = "0.10.4"
|
||||
version = "0.10.7"
|
||||
dependencies = [
|
||||
"dotenv",
|
||||
"json",
|
||||
@@ -2788,9 +2788,8 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "songbird"
|
||||
version = "0.4.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "338dd182f9f084f583c4c0db38588e28a34778ecec288208cf0b61c378ac90d1"
|
||||
version = "0.4.4"
|
||||
source = "git+https://github.com/eRgo35/songbird#64a9b6ba5e591a1324390aa896b661633f4baa24"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"audiopus",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "lyra"
|
||||
version = "0.10.4"
|
||||
version = "0.10.7"
|
||||
authors = ["Michał Czyż <mike@c2yz.com>"]
|
||||
edition = "2021"
|
||||
description = "A featureful Discord bot written in Rust."
|
||||
@@ -23,9 +23,9 @@ regex = "1.10.6"
|
||||
reqwest = { version = "0.11.27", features = ["json"] }
|
||||
serde = { version = "1.0.204", features = ["derive"] }
|
||||
serde_json = "1.0.122"
|
||||
songbird = { version = "0.4.3", default-features = true, features = [
|
||||
songbird = { version = "~0.4.3", default-features = true, features = [
|
||||
"builtin-queue",
|
||||
] }
|
||||
], git = "https://github.com/eRgo35/songbird" }
|
||||
serenity = { default-features = true, features = [
|
||||
"cache",
|
||||
"framework",
|
||||
|
||||
@@ -132,6 +132,7 @@ async fn parse_data(data: String) -> VecDeque<String> {
|
||||
.unwrap();
|
||||
|
||||
let list = Command::new("yt-dlp")
|
||||
.args(["--username", "oauth2", "--password", "''"])
|
||||
.args(["-j", "--flat-playlist", track])
|
||||
.output()
|
||||
.expect("Failed to execute process")
|
||||
|
||||
Reference in New Issue
Block a user