Skip to content

Commit

Permalink
Arl check (#108) v1.4.14
Browse files Browse the repository at this point in the history
* fix documentation

* update dependencies

* add checker

* change caching target

* vbump: 1.4.14

* move `mockingbird-deemix-check` to stable

---------

Co-authored-by: Skarlett <[email protected]>
  • Loading branch information
Skarlett and Skarlett authored Aug 29, 2023
1 parent ed18d05 commit 5fd1db4
Show file tree
Hide file tree
Showing 10 changed files with 600 additions and 41 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cachix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix build .#coggiebot-stable
- run: cachix push coggiebot result
- run: nix build .#deploy
- run: nix build .#cache-target
- run: cachix push coggiebot result

# update-self:
Expand Down
156 changes: 150 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion crates/coggiebot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "coggiebot"
version = "1.4.13"
version = "1.4.14"
edition = "2021"

[dependencies]
Expand Down Expand Up @@ -35,6 +35,9 @@ mockingbird-mp3 = ["mockingbird?/wget-mp3"]
# mockingbird compatiable with deep-mixer
mockingbird-deemix = ["mockingbird?/deemix"]

################
mockingbird-deemix-check = ["mockingbird?/check"]

################
# mockingbird compatiable with spotify
# mockingbird-spotify = ["mockingbird-deemix", "dep:serde", "dep:serde_derive", "dep:serde_json"]
Expand Down
8 changes: 5 additions & 3 deletions crates/mockingbird/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mockingbird"
version = "0.0.3"
version = "0.0.4"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -14,13 +14,15 @@ tokio = {version = "1.0", default-features=false, features = ["time", "rt"]}
####
serde = { version = "1.0", optional=true }
serde_json = { version = "1.0", optional=true }
reqwest = { version = "0.11", optional = true }
reqwest = { version = "0.11", optional = true, features = ["cookies"]}
chrono = {version = "^0.4.26", optional = true }

[build-dependencies]
cc = "1"

[features]
default = ["ytdl", "deemix"]
default = ["ytdl", "deemix", "check"]
check = ["dep:chrono", "dep:reqwest", "dep:serde", "dep:serde_json"]
ytdl = ["songbird/yt-dlp"]
deemix = ["dep:serde", "dep:serde_json"]
wget-mp3 = ["dep:reqwest"]
Loading

0 comments on commit 5fd1db4

Please sign in to comment.