diff rust/Cargo.lock @ 48195:4d5a13253d34

dirstate-v2: Replace the 32-bit `mode` field with two bits Previously we stored the entire value from `stat_result.st_mode`, like dirstate-v1 does. However only the executable permission and type of file (only symbolic links and normal files are supported) are relevant to Mecurial. So replace this field with two bits in the existing bitfield byte. For now the unused space is left as padding, as it will be used for something else soon. Differential Revision: https://phab.mercurial-scm.org/D11635
author Simon Sapin <simon.sapin@octobus.net>
date Tue, 12 Oct 2021 17:57:57 +0200
parents 008959fcbfb2
children 63e86fc9bfec
line wrap: on
line diff
--- a/rust/Cargo.lock	Mon Oct 11 18:37:21 2021 +0200
+++ b/rust/Cargo.lock	Tue Oct 12 17:57:57 2021 +0200
@@ -1,5 +1,7 @@
 # This file is automatically @generated by Cargo.
 # It is not intended for manual editing.
+version = 3
+
 [[package]]
 name = "adler"
 version = "0.2.3"
@@ -386,6 +388,7 @@
  "im-rc",
  "itertools",
  "lazy_static",
+ "libc",
  "log",
  "memmap2",
  "micro-timer",