Compare commits

...
3 Commits
Author SHA1 Message Date
phoenix adb00c951d bump: tokio
songparser / Check (pull_request) Successful in 2m14s
songparser / Clippy (pull_request) Successful in 1m18s
songparser / Rustfmt (pull_request) Successful in 1m21s
songparser / Test Suite (pull_request) Successful in 1m26s
songparser / build (pull_request) Successful in 1m39s
2026-07-07 22:27:13 -04:00
phoenix 33d30ae1b3 Removing rand dependency. Unused 2026-07-07 22:25:58 -04:00
phoenix f782605c77 Adding workflow canceling 2026-07-07 22:24:19 -04:00
3 changed files with 7 additions and 5 deletions
+4
View File
@@ -8,6 +8,10 @@ on:
branches: branches:
- main - main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs: jobs:
check: check:
name: Check name: Check
Generated
+2 -3
View File
@@ -1629,7 +1629,6 @@ dependencies = [
"icarus_envy", "icarus_envy",
"icarus_meta", "icarus_meta",
"icarus_models", "icarus_models",
"rand 0.10.1",
"reqwest", "reqwest",
"serde", "serde",
"serde_json", "serde_json",
@@ -1780,9 +1779,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]] [[package]]
name = "tokio" name = "tokio"
version = "1.52.2" version = "1.52.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "110a78583f19d5cdb2c5ccf321d1290344e71313c6c37d43520d386027d18386" checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
dependencies = [ dependencies = [
"bytes", "bytes",
"libc", "libc",
+1 -2
View File
@@ -5,14 +5,13 @@ edition = "2024"
rust-version = "1.95" rust-version = "1.95"
[dependencies] [dependencies]
tokio = { version = "1.52.2", features = ["full"] } tokio = { version = "1.52.3", features = ["full"] }
futures = { version = "0.3.32" } futures = { version = "0.3.32" }
reqwest = { version = "0.13.3", features = ["json", "stream", "multipart"] } reqwest = { version = "0.13.3", features = ["json", "stream", "multipart"] }
serde = { version = "1.0.228", features = ["derive"] } serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149" } serde_json = { version = "1.0.149" }
time = { version = "0.3.47", features = ["macros", "serde"] } time = { version = "0.3.47", features = ["macros", "serde"] }
uuid = { version = "1.23.1", features = ["v4", "serde"] } uuid = { version = "1.23.1", features = ["v4", "serde"] }
rand = { version = "0.10.1" }
icarus_meta = { git = "ssh://git@git.kundeng.us/phoenix/icarus_meta.git", tag = "v0.6.0" } icarus_meta = { git = "ssh://git@git.kundeng.us/phoenix/icarus_meta.git", tag = "v0.6.0" }
icarus_models = { git = "ssh://git@git.kundeng.us/phoenix/icarus_models.git", tag = "v0.11.1" } icarus_models = { git = "ssh://git@git.kundeng.us/phoenix/icarus_models.git", tag = "v0.11.1" }
icarus_envy = { git = "ssh://git@git.kundeng.us/phoenix/icarus_envy.git", tag = "v0.7.0" } icarus_envy = { git = "ssh://git@git.kundeng.us/phoenix/icarus_envy.git", tag = "v0.7.0" }