Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
180 changes: 147 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ reqwest = { version = "0.12.25", default-features = false, features = [
"json",
"zstd",
] }
tracing = "0.1.44"

[profile.dev]
opt-level = 0
Expand Down
5 changes: 5 additions & 0 deletions git-cliff-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ gitea = ["remote"]
## You can turn this off if you don't use Azure DevOps and don't want
## to make network requests to the Azure DevOps API.
azure_devops = ["remote"]
## Enable tracing instrumentation in git-cliff-core.
## This is intentionally feature-gated to keep the core library
## lightweight and to allow downstream users to opt in to tracing.
tracing = ["dep:tracing"]

[dependencies]
glob.workspace = true
Expand Down Expand Up @@ -83,6 +87,7 @@ urlencoding = "2.1.3"
cacache = { version = "13.1.0", features = ["mmap", "tokio-runtime"], default-features = false }
time = "0.3.44"
chrono = { version = "0.4.41", features = ["serde"] }
tracing = { workspace = true, optional = true }

[dependencies.git2]
version = "0.20.3"
Expand Down
Loading
Loading