##// END OF EJS Templates
rhg: make rhg recognise it supports zstd compression for revlogs...
marmoute -
r47632:3c470706 default draft
parent child Browse files
Show More
@@ -81,6 +81,7 b' const SUPPORTED: &[&str] = &['
81 81 SHARESAFE_REQUIREMENT,
82 82 SPARSEREVLOG_REQUIREMENT,
83 83 RELATIVE_SHARED_REQUIREMENT,
84 REVLOG_COMPRESSION_ZSTD,
84 85 // As of this writing everything rhg does is read-only.
85 86 // When it starts writing to the repository, it’ll need to either keep the
86 87 // persistent nodemap up to date or remove this entry:
@@ -151,3 +152,7 b' pub(crate) const RELATIVE_SHARED_REQUIRE'
151 152 /// `.hg/store/requires` are present.
152 153 #[allow(unused)]
153 154 pub(crate) const SHARESAFE_REQUIREMENT: &str = "share-safe";
155
156 /// A repository that use zstd compression inside its revlog
157 #[allow(unused)]
158 pub(crate) const REVLOG_COMPRESSION_ZSTD: &str = "revlog-compression-zstd";
General Comments 0
You need to be logged in to leave comments. Login now