Mercurial > public > mercurial-scm > hg-stable
diff mercurial/configitems.py @ 47109:473abf4728bf
dirstate-tree: Empty shell for a second Rust DirstateMap implementation
For background see description of the previous changeset
"Make Rust DirstateMap bindings go through a trait object".
Add an empty shell for a opt-in second Rust implementation of the
`DirstateMap` type and the `status` function. For now all methods panic.
This can be seen in "action" with:
./hg status --config experimental.dirstate-tree.in-memory=1
Differential Revision: https://phab.mercurial-scm.org/D10364
author | Simon Sapin <simon.sapin@octobus.net> |
---|---|
date | Tue, 30 Mar 2021 09:56:04 +0200 |
parents | 08e26ef4ad35 |
children | 4039cad0d8ff |
line wrap: on
line diff
--- a/mercurial/configitems.py Thu Apr 08 14:58:44 2021 +0200 +++ b/mercurial/configitems.py Tue Mar 30 09:56:04 2021 +0200 @@ -959,6 +959,11 @@ ) coreconfigitem( b'experimental', + b'dirstate-tree.in-memory', + default=False, +) +coreconfigitem( + b'experimental', b'editortmpinhg', default=False, )