gitlab-runner 0.3.0

Helper crate to build custom gitlab runners
Documentation
[package]
name = "gitlab-runner"
version = { workspace = true }
authors = ["Sjoerd Simons <sjoerd@collabora.com>"]
edition = "2024"
rust-version.workspace = true
license = "MIT OR Apache-2.0"
description = "Helper crate to build custom gitlab runners"
homepage = "https://github.com/collabora/gitlab-runner-rs"
repository = "https://github.com/collabora/gitlab-runner-rs"
readme = "../README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
flate2 = "1.1.9"
glob = "0.3"
reqwest = { version = "0.13.2", features = [ "json", "multipart", "stream" ] }
tokio = { version = "1.50.0", features = [ "full" ] }
url = "2.5.8"
serde = { version = "1.0.228", features = [ "derive" ] }
serde_json = "1.0.145"
thiserror = "2.0.18"
bytes = "1.11.1"
zip = "8.4.0"
pin-project = "1.1.11"
futures = "0.3.32"
async-trait = "0.1.89"
tempfile = "3.27.0"
parking_lot = "0.12.5"
tracing-subscriber = "0.3.23"
tracing = "0.1.44"
doc-comment = "0.3.4"
sha2 = "0.10.9"
hmac = "0.12.1"
rand = "0.10.0"
tokio-util = { version = "0.7.18", features = [ "io" ] }
tokio-retry2 = { version = "0.9.1", features = ["jitter"] }

[dev-dependencies]
tokio = { version = "1.50.0", features = [ "full", "test-util" ] }
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "json"] }
gitlab-runner-mock = { path = "../gitlab-runner-mock" }
futures = "0.3.32"
anyhow = "1.0.102"
clap = { version = "4.6.0", features = ["derive"] }

[build-dependencies]
vergen-gitcl = "9.1.0"