author | Raphaël Gomès <rgomes@octobus.net> |
Mon, 28 Mar 2022 17:24:41 +0200 | |
branch | stable |
changeset 48987 | 9bb700223f00 |
parent 48733 | 39c447e03dbc |
child 48952 | 8848c3453661 |
child 49149 | 006688e36e12 |
permissions | -rw-r--r-- |
44981 | 1 |
[package] |
2 |
name = "rhg" |
|
3 |
version = "0.1.0" |
|
45984
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45530
diff
changeset
|
4 |
authors = [ |
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45530
diff
changeset
|
5 |
"Antoine Cezar <antoine.cezar@octobus.net>", |
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45530
diff
changeset
|
6 |
"Raphaël Gomès <raphael.gomes@octobus.net>", |
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45530
diff
changeset
|
7 |
] |
44981 | 8 |
edition = "2018" |
9 |
||
10 |
[dependencies] |
|
48733
39c447e03dbc
rhg: Add support for colored output
Simon Sapin <simon.sapin@octobus.net>
parents:
48492
diff
changeset
|
11 |
atty = "0.2" |
45049
513b3ef277a3
rhg: add RootCommand using hg-core FindRoot operation to prepare `hg root`
Antoine Cezar <antoine.cezar@octobus.net>
parents:
44981
diff
changeset
|
12 |
hg-core = { path = "../hg-core"} |
46601
755c31a1caf9
rhg: Add support for the blackbox extension
Simon Sapin <simon.sapin@octobus.net>
parents:
46499
diff
changeset
|
13 |
chrono = "0.4.19" |
45050
18f8d3b31baa
rhg: add a limited `rhg root` subcommand
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45049
diff
changeset
|
14 |
clap = "2.33.1" |
46435
2e2033081274
rust: replace trivial `impl From …` with `#[derive(derive_more::From)]`
Simon Sapin <simon.sapin@octobus.net>
parents:
45984
diff
changeset
|
15 |
derive_more = "0.99" |
47404
ebdef6283798
rhg: read [paths] for `--repository` value
Pulkit Goyal <7895pulkit@gmail.com>
parents:
46733
diff
changeset
|
16 |
home = "0.5.3" |
46729
6cd9f53aaed8
rhg: Fall back to Python on --repository with an URL
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
17 |
lazy_static = "1.4.0" |
45530
b1cea0dc9db0
rhg: Add debug timing
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45050
diff
changeset
|
18 |
log = "0.4.11" |
b1cea0dc9db0
rhg: Add debug timing
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45050
diff
changeset
|
19 |
micro-timer = "0.3.1" |
46729
6cd9f53aaed8
rhg: Fall back to Python on --repository with an URL
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
20 |
regex = "1.3.9" |
45530
b1cea0dc9db0
rhg: Add debug timing
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45050
diff
changeset
|
21 |
env_logger = "0.7.1" |
48492
d3ec82016104
rust: Upgrade to format-bytes 0.3
Simon Sapin <simon.sapin@octobus.net>
parents:
47404
diff
changeset
|
22 |
format-bytes = "0.3.0" |
46601
755c31a1caf9
rhg: Add support for the blackbox extension
Simon Sapin <simon.sapin@octobus.net>
parents:
46499
diff
changeset
|
23 |
users = "0.11.0" |