diff --git a/Cargo.lock b/Cargo.lock index 0f304f00f..9bb7e2283 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2100,6 +2100,7 @@ dependencies = [ "bstr", "chrono", "diffy", + "dirs 5.0.1", "filetime", "fslock", "futures", @@ -2162,6 +2163,7 @@ dependencies = [ "async-trait", "backtrace", "console-subscriber", + "dirs 5.0.1", "futures", "git2", "gitbutler-core", diff --git a/crates/gitbutler-core/Cargo.toml b/crates/gitbutler-core/Cargo.toml index c37822fb7..9e461f846 100644 --- a/crates/gitbutler-core/Cargo.toml +++ b/crates/gitbutler-core/Cargo.toml @@ -19,6 +19,7 @@ backtrace = { version = "0.3.71", optional = true } bstr = "1.9.1" chrono = { version = "0.4.38", features = ["serde"] } diffy = "0.3.0" +dirs = "5.0.1" filetime = "0.2.23" fslock = "0.2.1" futures = "0.3" diff --git a/crates/gitbutler-tauri/Cargo.toml b/crates/gitbutler-tauri/Cargo.toml index 8cf964ad4..2e12cdd11 100644 --- a/crates/gitbutler-tauri/Cargo.toml +++ b/crates/gitbutler-tauri/Cargo.toml @@ -27,6 +27,7 @@ anyhow = "1.0.82" async-trait = "0.1.80" backtrace = { version = "0.3.71", optional = true } console-subscriber = "0.2.0" +dirs = "5.0.1" futures = "0.3" git2.workspace = true nonzero_ext = "0.3.0"