9 Commits

Author SHA1 Message Date
3c9cdea4a5 Update Rust crate dashmap to v6
Some checks failed
renovate/artifacts Artifact file update failure
tests / fmt (push) Successful in 1m26s
tests / clippy (push) Successful in 1m27s
tests / build (push) Successful in 1m32s
tests / test (push) Successful in 1m32s
tests / pre-commit (push) Failing after 54s
2025-03-05 01:27:28 +00:00
de3262c072 Merge pull request 'Update Rust crate sqlx to 0.8' (#20) from renovate/sqlx-0.x into main
All checks were successful
tests / fmt (push) Successful in 1m11s
tests / clippy (push) Successful in 1m31s
tests / pre-commit (push) Successful in 1m27s
tests / build (push) Successful in 1m47s
tests / test (push) Successful in 1m53s
renovate / renovate (push) Successful in 1m20s
deploy / release-image (push) Successful in 5m8s
Reviewed-on: #20
2025-03-05 02:20:12 +01:00
8e88cadbb8 Update Rust crate sqlx to 0.8
All checks were successful
tests / fmt (push) Successful in 1m30s
tests / build (push) Successful in 1m45s
tests / test (push) Successful in 1m44s
tests / clippy (push) Successful in 1m34s
tests / pre-commit (push) Successful in 1m38s
2025-03-05 01:08:09 +00:00
c6e34cf000 cargo update
Some checks are pending
tests / fmt (push) Successful in 1m1s
tests / build (push) Successful in 1m30s
tests / clippy (push) Successful in 1m20s
tests / pre-commit (push) Successful in 1m7s
tests / test (push) Successful in 1m57s
deploy / release-image (push) Successful in 4m42s
renovate / renovate (push) Waiting to run
2025-03-05 02:04:55 +01:00
3b135894eb Update Rust crate serde_json to v1.0.140
Some checks failed
tests / fmt (push) Failing after 29s
tests / build (push) Successful in 1m42s
tests / clippy (push) Successful in 1m21s
tests / pre-commit (push) Successful in 2m30s
tests / test (push) Failing after 5m37s
renovate / renovate (push) Successful in 37s
deploy / release-image (push) Successful in 3m50s
2025-03-05 01:02:27 +01:00
14cab9d833 Update Rust crate chrono to v0.4.40
Some checks are pending
tests / fmt (push) Waiting to run
tests / build (push) Waiting to run
tests / test (push) Waiting to run
tests / clippy (push) Waiting to run
tests / pre-commit (push) Waiting to run
deploy / release-image (push) Waiting to run
renovate / renovate (push) Waiting to run
2025-03-04 21:37:33 +00:00
f2f4396674 remove docker-compose.yml
All checks were successful
tests / fmt (push) Successful in 1m19s
tests / clippy (push) Successful in 1m13s
tests / build (push) Successful in 1m20s
tests / test (push) Successful in 1m23s
tests / pre-commit (push) Successful in 1m32s
deploy / release-image (push) Successful in 3m39s
renovate / renovate (push) Successful in 2m27s
2025-03-04 22:34:19 +01:00
b60cce35ca Merge branch 'main' of gitea:jheuel/ohrwurm
All checks were successful
tests / fmt (push) Successful in 1m9s
tests / build (push) Successful in 1m35s
tests / clippy (push) Successful in 1m26s
tests / pre-commit (push) Successful in 1m34s
deploy / release-image (push) Successful in 4m0s
tests / test (push) Successful in 1m19s
renovate / renovate (push) Successful in 54s
2025-03-04 11:44:05 +01:00
9f1ed63011 enable renovate automerge 2025-03-04 11:44:00 +01:00
4 changed files with 356 additions and 341 deletions

680
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,7 +9,7 @@ license = "MIT"
symphonia = { version = "0.5.2", features=["all", "opt-simd"] } symphonia = { version = "0.5.2", features=["all", "opt-simd"] }
songbird = { version = "0.4.0", features = ["driver", "gateway", "twilight", "rustls", "builtin-queue"] } songbird = { version = "0.4.0", features = ["driver", "gateway", "twilight", "rustls", "builtin-queue"] }
tokio = { features = ["macros", "rt-multi-thread", "signal", "sync"], version = "1" } tokio = { features = ["macros", "rt-multi-thread", "signal", "sync"], version = "1" }
sqlx = { version = "0.7", features = [ "runtime-tokio", "sqlite", "chrono", "migrate"] } sqlx = { version = "0.8", features = [ "runtime-tokio", "sqlite", "chrono", "migrate"] }
regex = { version = "1", features = ["unicode-case"] } regex = { version = "1", features = ["unicode-case"] }
futures = "0.3" futures = "0.3"
reqwest = "0.11" reqwest = "0.11"
@@ -26,7 +26,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
url = "2.5.1" url = "2.5.1"
anyhow = "1.0.86" anyhow = "1.0.86"
dashmap = "5.5.3" dashmap = "6.0.0"
async-trait = "0.1.80" async-trait = "0.1.80"
uuid = "1.8.0" uuid = "1.8.0"
chrono = "0.4.38" chrono = "0.4.38"

View File

@@ -1,10 +0,0 @@
services:
ohrwurm:
container_name: ohrwurm
image: jheuel/ohrwurm:latest@sha256:b5e0fbc40ed86820eba8673bb5a97ad6ce53f27a1c557e46515cabce35199296
# build: .
restart: unless-stopped
volumes:
- ./data:/data
env_file:
- .env

View File

@@ -18,7 +18,8 @@
"patch", "patch",
"pin", "pin",
"digest" "digest"
] ],
"automerge": true
} }
] ]
} }