gitlab 0.1808.0

Gitlab API client.
Documentation
[package]
name = "gitlab"
version = "0.1808.0"
authors = ["Ben Boeckel <ben.boeckel@kitware.com>"]
license = "MIT/Apache-2.0"
description = """
Gitlab API client.
"""
repository = "https://gitlab.kitware.com/utils/rust-gitlab"
documentation = "https://docs.rs/gitlab/0.1808.0"
readme = "README.md"
keywords = ["gitlab", "api"]
categories = ["web-programming", "api-bindings"]
edition = "2021"
rust-version = "1.65"

[features]
default = ["client_api"]
client_api = [
    "cron",
    "itertools",
    "percent-encoding",
    "reqwest",
    "thiserror",
    "graphql_client",
    "async-trait",
    "futures-util",
    "reqwest/rustls-tls",
]
client_der = ["reqwest/native-tls", "client_api"]
client_pem = ["reqwest/rustls-tls", "client_api"]
minimal_versions = ["void", "openssl", "errno", "tempfile", "mio", "rustls", "bumpalo", "combine", "ring", "rustls-native-certs", "quinn-proto", "spin"]
# This feature is here to aid with `semver-checks` by hiding the known-unstable
# parts of the crate.
_nohooks = []

[dependencies]
base64 = "~0.22"
cron = { version = "~0.15", optional = true }
derive_builder = "~0.20"
itertools = { version = "~0.14", optional = true }
log = "~0.4.6"
percent-encoding = { version = "^2.0", optional = true }
reqwest = { version = "~0.12.16", features = ["blocking", "json"], default-features = false, optional = true }
thiserror = { version = "^2", optional = true }
async-trait = { version = "~0.1.9", optional = true }
futures-util = { version = "0.3.14", default-features = false, optional = true }

bytes = "^1.0"
chrono = { version = "~0.4.31", default-features = false, features = ["clock", "serde"] }
graphql_client = { version = "~0.14", optional = true }
http = "^1"
serde = { version = "~1.0.139", features = ["derive"] }
serde_json = "^1.0.70"
serde_urlencoded = "~0.7"
url = "^2.5.4"

# Minimum version fixes.
#
# `unreachable` requires only `void 1.0.0`
# https://github.com/reem/rust-unreachable/pull/15
void = { version = "^1.0.1", optional = true }
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2023-0044
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2023-0072
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2024-0357
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2025-0004
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2025-0022
openssl = { version = "~0.10.72", optional = true }
# Required to avoid `gcc` transitive dependency.
errno = { version = "0.3.5", optional = true }
# Required to avoid `instant` transitive dependency.
tempfile = { version = "^3.7.0", optional = true }
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2024-0019
mio = { version = "0.8.11", optional = true }
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2024-0336
rustls = { version = "0.22.4", optional = true }
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2022-0078
bumpalo = { version = "3.11.1", optional = true }
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2023-0015
combine = { version = "3.6.2", optional = true }
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2025-0009
ring = { version = "0.17.12", optional = true }
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2025-0134
rustls-native-certs = { version = "0.8.1", optional = true }
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2024-0373
quinn-proto = { version = "0.11.7", optional = true }
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2019-0013
spin = { version = "0.5.2", optional = true }
# Bumps minimum so that its `miniz_oxide` dependency drops the unmaintained
# `adler` crate for `adler2`.
backtrace = "^0.3.74"

[dev-dependencies]
itertools = { version = "~0.14" }
thiserror = "^2"
tokio = { version = "1.38.2", features = ["macros", "rt-multi-thread"] }