Mercurial > hg
view rust/rhg/Cargo.toml @ 50734:d5cd1fd690f3 stable
hgweb: drop references to deprecated cgitb
cgitb is going away and gives warnings when importing, and that make tests
fail:
$TESTTMP/hgweb.cgi:5: DeprecationWarning: 'cgitb' is deprecated and slated for removal in Python 3.13
The lack of a "nice" high level error handler is not a huge problem, neither
for users (where it is disabled anyway) or for tests (where we don't use a
browser and the plain tracebacks often are more readable). It is inevitable
that it is going away, and there is no obvious alternative. Remove it and move
on.
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Mon, 26 Jun 2023 18:00:28 +0200 |
parents | d39ac3468ad4 |
children | 48fd4d23c867 |
line wrap: on
line source
[package] name = "rhg" version = "0.1.0" authors = [ "Antoine Cezar <antoine.cezar@octobus.net>", "Raphaël Gomès <raphael.gomes@octobus.net>", ] edition = "2021" [dependencies] atty = "0.2.14" hg-core = { path = "../hg-core"} chrono = "0.4.23" clap = { version = "4.0.24", features = ["cargo"] } derive_more = "0.99.17" home = "0.5.4" lazy_static = "1.4.0" log = "0.4.17" logging_timer = "1.1.0" regex = "1.7.0" env_logger = "0.9.3" format-bytes = "0.3.0" whoami = "1.4" which = "4.3.0" rayon = "1.7.0"