1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-09-17 10:17:07 +03:00

chore(dep): use the forked git repository for git-conventional

Signed-off-by: orhun <orhunparmaksiz@gmail.com>
This commit is contained in:
orhun 2021-05-23 01:07:56 +03:00
parent 81c1e98189
commit 38c117158d
No known key found for this signature in database
GPG Key ID: B928720AEC532117
2 changed files with 9 additions and 3 deletions

7
Cargo.lock generated
View File

@ -264,11 +264,11 @@ dependencies = [
[[package]]
name = "git-conventional"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b154369d65c23e2b768324e1b0143e991fe1dd3c6d617a26d8a6917303941e88"
source = "git+https://github.com/orhun/git-conventional#cb19e480b1a933ef16cd80091d02f6d3a7986ee3"
dependencies = [
"doc-comment",
"nom 6.1.2",
"serde",
"unicase",
]
@ -788,6 +788,9 @@ name = "serde"
version = "1.0.126"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"

View File

@ -15,7 +15,6 @@ edition = "2018"
[dependencies]
thiserror = "1.0"
git2 = "0.13"
git-conventional = "0.9.1"
serde = "1.0"
serde_derive = "1.0"
tera = "1.9.0"
@ -24,3 +23,7 @@ tera = "1.9.0"
version = "0.11.0"
default-features = false
features = ["toml"]
[dependencies.git-conventional]
git = "https://github.com/orhun/git-conventional"
features = ["serde"]