Compare commits

...

3 Commits

Author SHA1 Message Date
9ca2ca24e5 Forgot to include file
All checks were successful
Rust Build / Check (pull_request) Successful in 59s
Rust Build / Rustfmt (pull_request) Successful in 28s
Rust Build / Test Suite (pull_request) Successful in 1m11s
Rust Build / Clippy (pull_request) Successful in 1m8s
Rust Build / build (pull_request) Successful in 1m53s
2026-04-05 17:25:59 -04:00
e18bf2cc88 Removing workflow for gitlab 2026-04-05 17:25:44 -04:00
a9baa84ff2 crate fixes 2026-04-05 17:24:55 -04:00
3 changed files with 283 additions and 695 deletions

View File

@@ -1,39 +0,0 @@
stages:
- build
- test
before_script:
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
- eval $(ssh-agent -s)
- mv "$SSH_DEPLOY_KEY" gitlab_deploy_key # copies the file from the variable.
- chmod 600 gitlab_deploy_key
- ssh-add gitlab_deploy_key
- mkdir -p ~/.ssh
- '[[ -f /.dockerenv ]] && echo -e "Host gitlab.com\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
- echo "$KNOWN_HOSTS" >> ~/.ssh/known_hosts
build:
stage: build
image: rust:1.85
script:
- cargo build --release
artifacts:
paths:
- target/release/songparser
expire_in: 1 week
cache:
key: "cargo-cache"
paths:
- target/
- ~/.cargo/
test:
stage: test
image: rust:latest
script:
- cargo test
cache:
key: "cargo-cache"
paths:
- target/
- ~/.cargo/

937
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -7,7 +7,7 @@ rust-version = "1.94"
[dependencies]
tokio = { version = "1.51", features = ["full"] }
futures = { version = "0.3.32" }
reqwest = { version = "0.13.2", features = ["json", "stream", "multipart"] }
reqwest = { version = "0.12.28", features = ["json", "stream", "multipart"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149" }
time = { version = "0.3.47", features = ["macros", "serde"] }