summaryrefslogtreecommitdiffstats
path: root/zellij-utils/src/consts.rs
diff options
context:
space:
mode:
authorsilwol <wolfgang@silbermayr.at>2023-09-28 11:26:54 +0200
committerGitHub <noreply@github.com>2023-09-28 11:26:54 +0200
commite789d6bf453fac9810ec3bc01455d2e197e0cef2 (patch)
tree2cfef72b76eefa546f19dba0803b02611b05eb77 /zellij-utils/src/consts.rs
parentd62b3975269fd81c530f4bc36e72f04b802b71c7 (diff)
chore: migrate to directories from directories-next (#2820)
The `directories-next` crate used to be the go-to fork crate when `directories` was unmaintained for some time. This has changed, nowadays `directories-next` appears abandoned while `directories` has a more recent release.
Diffstat (limited to 'zellij-utils/src/consts.rs')
-rw-r--r--zellij-utils/src/consts.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/zellij-utils/src/consts.rs b/zellij-utils/src/consts.rs
index 9091052bb..d75934941 100644
--- a/zellij-utils/src/consts.rs
+++ b/zellij-utils/src/consts.rs
@@ -1,6 +1,6 @@
//! Zellij program-wide constants.
-use directories_next::ProjectDirs;
+use directories::ProjectDirs;
use include_dir::{include_dir, Dir};
use lazy_static::lazy_static;
use once_cell::sync::OnceCell;