[package]
edition = "2024"
name = "git-lfs-api"
version = "0.4.0"
authors = ["Patrick Elsen <pelsen@xfbs.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP client for the Git LFS batch and locking APIs"
homepage = "https://gitlab.com/rustutils/git-lfs"
readme = "README.md"
keywords = [
"git",
"lfs",
"git-lfs",
"batch",
"locking",
]
categories = [
"web-programming::http-client",
"api-bindings",
]
license = "MIT"
repository = "https://gitlab.com/rustutils/git-lfs"
[lib]
name = "git_lfs_api"
path = "src/lib.rs"
[[test]]
name = "api"
path = "tests/api.rs"
[dependencies.git-lfs-creds]
version = "0.4.0"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
"charset",
"http2",
"stream",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_urlencoded]
version = "0.7"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["rt"]
[dependencies.url]
version = "2"
[dev-dependencies.base64]
version = "0.22"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.wiremock]
version = "0.6"