##// END OF EJS Templates
rhg: upgrade `clap` dependency...
rhg: upgrade `clap` dependency This one is the worst one to upgrade since v2 -> v4 broke a ton of API, which thankfully seems saner now. Contrary to what was done in the `hg-core/src/examples/nodemap` rewrite, we're not switching from the "builder" pattern to the "derive" pattern, since that would imply a much larger diff. It can be done incrementally.

File last commit:

r50534:37bc3ede default
r50534:37bc3ede default
Show More
Cargo.toml
25 lines | 514 B | text/plain | TOMLLexer
Antoine Cezar
rhg: add rhg crate...
r45503 [package]
name = "rhg"
version = "0.1.0"
Raphaël Gomès
rhg: use `format_bytes!` for error messages...
r46598 authors = [
"Antoine Cezar <antoine.cezar@octobus.net>",
"Raphaël Gomès <raphael.gomes@octobus.net>",
]
Raphaël Gomès
rust: move all crates in the main workspace to edition 2021...
r50524 edition = "2021"
Antoine Cezar
rhg: add rhg crate...
r45503
[dependencies]
Raphaël Gomès
rhg: upgrade dependencies...
r49807 atty = "0.2.14"
Antoine Cezar
rhg: add RootCommand using hg-core FindRoot operation to prepare `hg root`...
r45592 hg-core = { path = "../hg-core"}
Simon Sapin
rhg: Add support for the blackbox extension...
r47343 chrono = "0.4.19"
Raphaël Gomès
rhg: upgrade `clap` dependency...
r50534 clap = { version = "4.0.24", features = ["cargo"] }
Raphaël Gomès
rhg: upgrade dependencies...
r49807 derive_more = "0.99.17"
Pulkit Goyal
rhg: read [paths] for `--repository` value...
r48196 home = "0.5.3"
Simon Sapin
rhg: Fall back to Python on --repository with an URL...
r47463 lazy_static = "1.4.0"
Raphaël Gomès
rhg: upgrade dependencies...
r49807 log = "0.4.14"
micro-timer = "0.4.0"
regex = "1.5.5"
env_logger = "0.9.0"
Simon Sapin
rust: Upgrade to format-bytes 0.3...
r49323 format-bytes = "0.3.0"
Simon Sapin
rhg: Add support for the blackbox extension...
r47343 users = "0.11.0"
Raphaël Gomès
rhg: use `Command::exec` instead of `Command::status`...
r50043 which = "4.2.5"
Arseniy Alekseyev
rhg: parallellize computation of [unsure_is_modified]...
r50412 rayon = "1.5.1"