1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-09-19 03:08:30 +03:00
git-cliff/git-cliff-core/Cargo.toml
dependabot[bot] 4d5683f655
chore(deps): bump thiserror from 1.0.44 to 1.0.46 (#243)
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.44 to 1.0.46.
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.44...1.0.46)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-16 09:26:22 +02:00

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.68.2"
[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.46"
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.105"
serde_regex = "1.1.0"
tera = "1.19.0"
indexmap = { version = "2.0.0", optional = true }
toml = "0.7.6"
lazy-regex = "3.0.1"
[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.4"
features = ["serde"]
[dependencies.rust-embed]
version = "6.8.1"
features = ["debug-embed"]
[dev-dependencies]
pretty_assertions = "1.4.0"