1
1
mirror of https://github.com/orhun/git-cliff.git synced 2025-01-05 15:58:24 +03:00

chore(dep): remove default features from git2

This commit is contained in:
orhun 2021-06-11 20:27:18 +03:00
parent 8633a5372a
commit a5ef8bd6d2
No known key found for this signature in database
GPG Key ID: B928720AEC532117
2 changed files with 4 additions and 38 deletions

37
Cargo.lock generated
View File

@ -337,8 +337,6 @@ dependencies = [
"libc",
"libgit2-sys",
"log",
"openssl-probe",
"openssl-sys",
"url",
]
@ -492,26 +490,10 @@ checksum = "86271bacd72b2b9e854c3dcfb82efd538f15f870e4c11af66900effb462f6825"
dependencies = [
"cc",
"libc",
"libssh2-sys",
"libz-sys",
"openssl-sys",
"pkg-config",
]
[[package]]
name = "libssh2-sys"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0186af0d8f171ae6b9c4c90ec51898bad5d08a2d5e470903a50d9ad8959cbee"
dependencies = [
"cc",
"libc",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
]
[[package]]
name = "libz-sys"
version = "1.1.3"
@ -612,25 +594,6 @@ version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
[[package]]
name = "openssl-probe"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a"
[[package]]
name = "openssl-sys"
version = "0.9.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6b0d6fb7d80f877617dfcb014e605e2b5ab2fb0afdf27935219bb6bd984cb98"
dependencies = [
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "output_vt100"
version = "0.1.2"

View File

@ -13,7 +13,6 @@ edition = "2018"
[dependencies]
thiserror = "1.0"
git2 = "0.13.20"
serde = "1.0"
serde_derive = "1.0"
tera = "1.9.0"
@ -21,6 +20,10 @@ regex = "1.5.4"
serde_regex = "1.1.0"
indexmap = "1.6.2"
[dependencies.git2]
version = "0.13.20"
default-features = false
[dependencies.config]
version = "0.11.0"
default-features = false