summaryrefslogtreecommitdiff
path: root/pixel-client/src/config.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-06-03 20:00:18 +0200
committermetamuffin <metamuffin@disroot.org>2025-06-03 20:00:18 +0200
commitdb4587d3ec64b7e28691b43f9d9701939eed94d1 (patch)
tree1005017ea4a5d4e287024eaf08f876c7e34bfbdb /pixel-client/src/config.rs
parent9ee7eef2919feffe4e0695494d4027e8ec011808 (diff)
downloadhurrycurry-db4587d3ec64b7e28691b43f9d9701939eed94d1.tar
hurrycurry-db4587d3ec64b7e28691b43f9d9701939eed94d1.tar.bz2
hurrycurry-db4587d3ec64b7e28691b43f9d9701939eed94d1.tar.zst
update rust toolchain and rust dependencies.
`map_many_mut` and `trait_upcasting` was stabilized.
Diffstat (limited to 'pixel-client/src/config.rs')
-rw-r--r--pixel-client/src/config.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/pixel-client/src/config.rs b/pixel-client/src/config.rs
index 4d50ae10..96028deb 100644
--- a/pixel-client/src/config.rs
+++ b/pixel-client/src/config.rs
@@ -30,7 +30,7 @@ pub struct Config {
impl Config {
pub fn path() -> Result<PathBuf> {
- Ok(xdg::BaseDirectories::with_prefix("pixelcurry")?.place_config_file("config.toml")?)
+ Ok(xdg::BaseDirectories::with_prefix("pixelcurry").place_config_file("config.toml")?)
}
pub fn load() -> Result<Self> {
let path = Self::path()?;