lmrc-gitlab 0.3.16

GitLab API client library for the LMRC Stack - comprehensive Rust library for programmatic control of GitLab via its API
Documentation
[package]
name = "lmrc-gitlab"
version = "0.3.16"
edition = "2024"
authors = ["Lemarc <lemarc.dev@gmail.com>"]
description = "GitLab API client library for the LMRC Stack - comprehensive Rust library for programmatic control of GitLab via its API"
license.workspace = true
repository = "https://gitlab.com/lemarco/lmrc-stack"
documentation = "https://docs.rs/lmrc-gitlab"
homepage = "https://gitlab.com/lemarco/lmrc-stack/tree/main/libs/gitlab-manager"
keywords = ["gitlab", "api", "ci", "cd", "devops"]
categories = ["api-bindings", "development-tools"]
readme = "README.md"

[dependencies]
# Hexagonal Architecture - Port traits
lmrc-ports = { workspace = true }
async-trait = { workspace = true }

# GitLab API Client
gitlab = "0.1805"

# Error Handling
thiserror = "2.0"

# Logging
tracing = "0.1"

# Async Runtime (minimal features for library)
tokio = { version = "1.35", features = ["rt-multi-thread"] }

# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

# Date/Time handling
chrono = { version = "0.4", features = ["serde"] }

# HTTP Client
reqwest = { version = "0.12.24", features = ["json", "rustls-tls"] }

[dev-dependencies]
# Testing
tokio = { version = "1.35", features = ["full", "test-util"] }
tokio-test = "0.4"

[lib]
name = "lmrc_gitlab"
path = "src/lib.rs"