Mercurial > hg
annotate rust/rhg/Cargo.toml @ 46243:63c923fd7fa8
setup: when possible, build and bundle man pages
This makes it so the manual pages are built as part of the Python
build, and includes them in any wheel generated. This should make
Python wheels a much more useful and complete way of distributing
Mercurial binaries.
Differential Revision: https://phab.mercurial-scm.org/D9640
author | Dan Villiom Podlaski Christiansen <danchr@gmail.com> |
---|---|
date | Mon, 21 Dec 2020 15:50:01 +0100 |
parents | fada33872b5b |
children | 2e2033081274 |
rev | line source |
---|---|
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] | |
45049
513b3ef277a3
rhg: add RootCommand using hg-core FindRoot operation to prepare `hg root`
Antoine Cezar <antoine.cezar@octobus.net>
parents:
44981
diff
changeset
|
11 hg-core = { path = "../hg-core"} |
45050
18f8d3b31baa
rhg: add a limited `rhg root` subcommand
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45049
diff
changeset
|
12 clap = "2.33.1" |
45530
b1cea0dc9db0
rhg: Add debug timing
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45050
diff
changeset
|
13 log = "0.4.11" |
b1cea0dc9db0
rhg: Add debug timing
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45050
diff
changeset
|
14 micro-timer = "0.3.1" |
b1cea0dc9db0
rhg: Add debug timing
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45050
diff
changeset
|
15 env_logger = "0.7.1" |
45984
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45530
diff
changeset
|
16 format-bytes = "0.1.3" |