diff --git a/src/config.rs b/src/config.rs index 793b915..1d85746 100644 --- a/src/config.rs +++ b/src/config.rs @@ -47,7 +47,7 @@ impl Config { env::var(CONFIG_ENV).ok().map(PathBuf::from), dirs::config_dir().map(|p| p.join(env!("CARGO_PKG_NAME")).join(DEFAULT_CONFIG)), dirs::home_dir().map(|p| { - p.join(format!(".{}", env!("CARGO_PKG_NAME"))) + p.join(concat!(".", env!("CARGO_PKG_NAME"))) .join(DEFAULT_CONFIG) }), ] diff --git a/src/lib.rs b/src/lib.rs index 1ea5c10..10a5fc0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -89,7 +89,7 @@ pub fn run() -> Result<()> { dbus_client.notify( env!("CARGO_PKG_NAME"), "startup", - &format!("{} is up and running 🦡", env!("CARGO_PKG_NAME")), + concat!(env!("CARGO_PKG_NAME"), " is up and running 🦡"), -1, )?; }