libgit2-sys 0.8.1

Native bindings to the libgit2 library
Documentation
[package]
name = "libgit2-sys"
version = "0.8.1"
authors = ["Josh Triplett <josh@joshtriplett.org>", "Alex Crichton <alex@alexcrichton.com>"]
links = "git2"
build = "build.rs"
repository = "https://github.com/rust-lang/git2-rs"
license = "MIT/Apache-2.0"
description = "Native bindings to the libgit2 library"
exclude = [
    "libgit2/tests/*",
]
edition = "2018"

[lib]
name = "libgit2_sys"
path = "lib.rs"

[dependencies]
libc = "0.2"
libssh2-sys = { version = "0.2.11", optional = true }
libz-sys = "1.0.22"

[build-dependencies]
pkg-config = "0.3.7"
cc = "1.0.25"

[target.'cfg(unix)'.dependencies]
openssl-sys = { version = "0.9", optional = true }

[features]
ssh = ["libssh2-sys"]
https = ["openssl-sys"]
ssh_key_from_memory = []