Mercurial > public > mercurial-scm > hg
changeset 52842:d85a3a5545ab
rust-pyo3: add `logging_timer` dependency
This is useful when debugging/light instrumentation, we already use it
all the time in other packages.
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Mon, 06 Jan 2025 17:29:25 +0100 |
parents | 28f0f00b5dbd |
children | 189491cea922 |
files | rust/Cargo.lock rust/hg-pyo3/Cargo.toml |
diffstat | 2 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/rust/Cargo.lock Sun Jan 05 23:39:02 2025 +0100 +++ b/rust/Cargo.lock Mon Jan 06 17:29:25 2025 +0100 @@ -736,6 +736,7 @@ "env_logger 0.9.3", "hg-core", "log", + "logging_timer", "pyo3", "pyo3-sharedref", "stable_deref_trait",
--- a/rust/hg-pyo3/Cargo.toml Sun Jan 05 23:39:02 2025 +0100 +++ b/rust/hg-pyo3/Cargo.toml Mon Jan 06 17:29:25 2025 +0100 @@ -17,6 +17,7 @@ hg-core = { path = "../hg-core"} stable_deref_trait = "1.2.0" log = "0.4.17" +logging_timer = "1.1.0" derive_more = "0.99.17" env_logger = "0.9.3" vcsgraph = "0.2.0"