[package]
edition = "2021"
name = "git2-curl"
version = "0.22.0"
authors = [
"Josh Triplett <josh@joshtriplett.org>",
"Alex Crichton <alex@alexcrichton.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Backend for an HTTP transport in libgit2 powered by libcurl.
Intended to be used with the git2 crate.
"""
documentation = "https://docs.rs/git2-curl"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/git2-rs"
[features]
zlib-ng-compat = [
"git2/zlib-ng-compat",
"curl/zlib-ng-compat",
]
[lib]
name = "git2_curl"
path = "src/lib.rs"
[[test]]
name = "all"
path = "tests/all.rs"
harness = false
[dependencies.curl]
version = "0.4.33"
[dependencies.git2]
version = "0.21"
default-features = false
[dependencies.log]
version = "0.4"
[dependencies.url]
version = "2.5.4"
[dev-dependencies.tempfile]
version = "3.0"