Show More
@@ -81,6 +81,7 b' const SUPPORTED: &[&str] = &[' | |||||
81 | SHARESAFE_REQUIREMENT, |
|
81 | SHARESAFE_REQUIREMENT, | |
82 | SPARSEREVLOG_REQUIREMENT, |
|
82 | SPARSEREVLOG_REQUIREMENT, | |
83 | RELATIVE_SHARED_REQUIREMENT, |
|
83 | RELATIVE_SHARED_REQUIREMENT, | |
|
84 | REVLOG_COMPRESSION_ZSTD, | |||
84 | // As of this writing everything rhg does is read-only. |
|
85 | // As of this writing everything rhg does is read-only. | |
85 | // When it starts writing to the repository, it’ll need to either keep the |
|
86 | // When it starts writing to the repository, it’ll need to either keep the | |
86 | // persistent nodemap up to date or remove this entry: |
|
87 | // persistent nodemap up to date or remove this entry: | |
@@ -151,3 +152,7 b' pub(crate) const RELATIVE_SHARED_REQUIRE' | |||||
151 | /// `.hg/store/requires` are present. |
|
152 | /// `.hg/store/requires` are present. | |
152 | #[allow(unused)] |
|
153 | #[allow(unused)] | |
153 | pub(crate) const SHARESAFE_REQUIREMENT: &str = "share-safe"; |
|
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