Mercurial > hg
annotate rust/chg/Cargo.toml @ 47682:78f7f0d490ee
dirstate-v2: Move fixed-size tree metadata into the docket file
Before this changeset, the dirstate-v2 data file contained not only nodes
and paths that may be reused when appending to an existing file,
but also some fixed-size metadata that applies to the entire tree
and was added at the end of the data file for every append.
This moves that metadata into the docket file, so that repeated "append"
operations without meaningful changes don’t actually need to grow any file.
Differential Revision: https://phab.mercurial-scm.org/D11098
author | Simon Sapin <simon.sapin@octobus.net> |
---|---|
date | Thu, 15 Jul 2021 23:02:17 +0200 |
parents | 9fc9526e283a |
children |
rev | line source |
---|---|
39967 | 1 [package] |
2 name = "chg" | |
3 version = "0.1.0" | |
4 authors = ["Yuya Nishihara <yuya@tcha.org>"] | |
5 description = "Client for Mercurial command server with cHg extension" | |
6 license = "GPL-2.0+" | |
44688
1f5ab1a9363d
rust-chg: upgrade to 2018 edition and remove useless extern crates
Yuya Nishihara <yuya@tcha.org>
parents:
44669
diff
changeset
|
7 edition = "2018" |
39967 | 8 |
9 [dependencies] | |
44737
e9e44e61042b
rust-chg: upgrade to futures-0.3 based libraries
Yuya Nishihara <yuya@tcha.org>
parents:
44736
diff
changeset
|
10 async-trait = "0.1" |
e9e44e61042b
rust-chg: upgrade to futures-0.3 based libraries
Yuya Nishihara <yuya@tcha.org>
parents:
44736
diff
changeset
|
11 bytes = "0.5" |
e9e44e61042b
rust-chg: upgrade to futures-0.3 based libraries
Yuya Nishihara <yuya@tcha.org>
parents:
44736
diff
changeset
|
12 futures = "0.3" |
39967 | 13 libc = "0.2" |
40287
7623199def92
rust-chg: depend on log and tokio_timer
Yuya Nishihara <yuya@tcha.org>
parents:
39967
diff
changeset
|
14 log = { version = "0.4", features = ["std"] } |
44737
e9e44e61042b
rust-chg: upgrade to futures-0.3 based libraries
Yuya Nishihara <yuya@tcha.org>
parents:
44736
diff
changeset
|
15 tokio-hglib = "0.3" |
e9e44e61042b
rust-chg: upgrade to futures-0.3 based libraries
Yuya Nishihara <yuya@tcha.org>
parents:
44736
diff
changeset
|
16 |
e9e44e61042b
rust-chg: upgrade to futures-0.3 based libraries
Yuya Nishihara <yuya@tcha.org>
parents:
44736
diff
changeset
|
17 [dependencies.tokio] |
e9e44e61042b
rust-chg: upgrade to futures-0.3 based libraries
Yuya Nishihara <yuya@tcha.org>
parents:
44736
diff
changeset
|
18 version = "0.2" |
e9e44e61042b
rust-chg: upgrade to futures-0.3 based libraries
Yuya Nishihara <yuya@tcha.org>
parents:
44736
diff
changeset
|
19 features = ["rt-core", "io-util", "time", "process", "macros"] |
39967 | 20 |
21 [build-dependencies] | |
22 cc = "1.0" |