1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-12-02 01:24:06 +03:00
git-cliff/git-cliff-core/Cargo.toml
dependabot[bot] 462c0e52da
chore(deps): bump indexmap from 2.2.5 to 2.2.6 (#578)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-26 13:37:05 +03:00

86 lines
2.3 KiB
TOML

[package]
name = "git-cliff-core"
version = "2.2.0-rc.1" # managed by release.sh
description = "Core library of git-cliff"
authors = ["git-cliff contributors <git-cliff@protonmail.com>"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
homepage = "https://github.com/orhun/git-cliff"
repository = "https://github.com/orhun/git-cliff"
keywords = ["changelog", "generator", "conventional", "commit"]
edition = "2021"
rust-version = "1.73.0"
[features]
default = ["repo"]
## Enable parsing commits from a git repository.
## You can turn this off if you already have the commits to put in the
## changelog and you don't need `git-cliff` to parse them.
repo = ["dep:git2", "dep:glob", "dep:indexmap"]
## Enable integration with GitHub.
## You can turn this off if you don't use GitHub and don't want
## to make network requests to the GitHub API.
github = [
"dep:reqwest",
"dep:http-cache-reqwest",
"dep:reqwest-middleware",
"dep:tokio",
"dep:futures",
]
[dependencies]
glob = { workspace = true, optional = true }
regex.workspace = true
log.workspace = true
secrecy.workspace = true
dirs.workspace = true
lazy_static.workspace = true
thiserror = "1.0.58"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
serde_regex = "1.1.0"
tera = "1.19.1"
indexmap = { version = "2.2.6", optional = true }
toml = "0.8.12"
lazy-regex = "3.1.0"
next_version = "0.2.15"
semver = "1.0.22"
document-features = { version = "0.2.8", optional = true }
reqwest = { version = "0.11.27", default-features = false, features = [
"rustls-tls",
"json",
], optional = true }
http-cache-reqwest = { version = "0.13.0", optional = true }
reqwest-middleware = { version = "0.2.5", optional = true }
tokio = { version = "1.36.0", features = [
"rt-multi-thread",
"macros",
], optional = true }
futures = { version = "0.3.30", optional = true }
url = "2.5.0"
[dependencies.git2]
version = "0.18.3"
default-features = false
optional = true
[dependencies.config]
version = "0.14.0"
default-features = false
features = ["toml", "yaml"]
[dependencies.git-conventional]
version = "0.12.6"
features = ["serde"]
[dependencies.rust-embed]
version = "8.3.0"
features = ["debug-embed", "compression"]
[dev-dependencies]
pretty_assertions = "1.4.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]