summaryrefslogtreecommitdiffstats
path: root/vendor/gix/src/create.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
commit9835e2ae736235810b4ea1c162ca5e65c547e770 (patch)
tree3fcebf40ed70e581d776a8a4c65923e8ec20e026 /vendor/gix/src/create.rs
parentReleasing progress-linux version 1.70.0+dfsg2-1~progress7.99u1. (diff)
downloadrustc-9835e2ae736235810b4ea1c162ca5e65c547e770.tar.xz
rustc-9835e2ae736235810b4ea1c162ca5e65c547e770.zip
Merging upstream version 1.71.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/gix/src/create.rs')
-rw-r--r--vendor/gix/src/create.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/gix/src/create.rs b/vendor/gix/src/create.rs
index 96d047e3b..878ec1164 100644
--- a/vendor/gix/src/create.rs
+++ b/vendor/gix/src/create.rs
@@ -117,7 +117,7 @@ pub struct Options {
pub destination_must_be_empty: bool,
/// If set, use these filesystem capabilities to populate the respective gix-config fields.
/// If `None`, the directory will be probed.
- pub fs_capabilities: Option<gix_worktree::fs::Capabilities>,
+ pub fs_capabilities: Option<gix_fs::Capabilities>,
}
/// Create a new `.git` repository of `kind` within the possibly non-existing `directory`
@@ -208,7 +208,7 @@ pub fn into(
{
let mut config = gix_config::File::default();
{
- let caps = fs_capabilities.unwrap_or_else(|| gix_worktree::fs::Capabilities::probe(&dot_git));
+ let caps = fs_capabilities.unwrap_or_else(|| gix_fs::Capabilities::probe(&dot_git));
let mut core = config.new_section("core", None).expect("valid section name");
core.push(key("repositoryformatversion"), Some("0".into()));