mirror of
https://github.com/orhun/git-cliff.git
synced 2024-12-17 12:22:09 +03:00
5bd73fe494
Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.96 to 1.0.97. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.96...v1.0.97) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
50 lines
1.2 KiB
TOML
50 lines
1.2 KiB
TOML
[package]
|
|
name = "git-cliff-core"
|
|
version = "1.2.0" # managed by release.sh
|
|
description = "Core library of git-cliff"
|
|
authors = ["git-cliff contributors <git-cliff@protonmail.com>"]
|
|
license = "GPL-3.0"
|
|
homepage = "https://github.com/orhun/git-cliff"
|
|
repository = "https://github.com/orhun/git-cliff"
|
|
keywords = ["changelog", "generator", "conventional", "commit"]
|
|
edition = "2021"
|
|
rust-version = "1.64.0"
|
|
|
|
[features]
|
|
default = ["repo"]
|
|
repo = ["dep:git2", "dep:glob", "dep:indexmap"]
|
|
|
|
[dependencies]
|
|
glob = { workspace = true, optional = true }
|
|
regex.workspace = true
|
|
log.workspace = true
|
|
thiserror = "1.0.40"
|
|
serde = { version = "1.0.164", features = ["derive"] }
|
|
serde_json = "1.0.97"
|
|
serde_regex = "1.1.0"
|
|
tera = "1.19.0"
|
|
indexmap = { version = "1.9.3", optional = true }
|
|
toml = "0.7.4"
|
|
lazy-regex = "2.5.0"
|
|
|
|
[dependencies.git2]
|
|
version = "0.17.2"
|
|
default-features = false
|
|
optional = true
|
|
|
|
[dependencies.config]
|
|
version = "0.13.3"
|
|
default-features = false
|
|
features = ["toml", "yaml"]
|
|
|
|
[dependencies.git-conventional]
|
|
version = "0.12.3"
|
|
features = ["serde"]
|
|
|
|
[dependencies.rust-embed]
|
|
version = "6.7.0"
|
|
features = ["debug-embed"]
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.3.0"
|