Mercurial > hg
comparison rust/rhg/Cargo.toml @ 45984:fada33872b5b
rhg: use `format_bytes!` for error messages
This change also includes a formatting changing with the new `rustfmt` version,
but I'm expecting it to have already been applied in another patch by the time
this lands.
Differential Revision: https://phab.mercurial-scm.org/D9407
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Thu, 26 Nov 2020 09:54:16 +0100 |
parents | b1cea0dc9db0 |
children | 2e2033081274 |
comparison
equal
deleted
inserted
replaced
45983:97205cf0ee4d | 45984:fada33872b5b |
---|---|
1 [package] | 1 [package] |
2 name = "rhg" | 2 name = "rhg" |
3 version = "0.1.0" | 3 version = "0.1.0" |
4 authors = ["Antoine Cezar <antoine.cezar@octobus.net>"] | 4 authors = [ |
5 "Antoine Cezar <antoine.cezar@octobus.net>", | |
6 "Raphaël Gomès <raphael.gomes@octobus.net>", | |
7 ] | |
5 edition = "2018" | 8 edition = "2018" |
6 | 9 |
7 [dependencies] | 10 [dependencies] |
8 hg-core = { path = "../hg-core"} | 11 hg-core = { path = "../hg-core"} |
9 clap = "2.33.1" | 12 clap = "2.33.1" |
10 log = "0.4.11" | 13 log = "0.4.11" |
11 micro-timer = "0.3.1" | 14 micro-timer = "0.3.1" |
12 env_logger = "0.7.1" | 15 env_logger = "0.7.1" |
16 format-bytes = "0.1.3" |