Skip to content

Commit

Permalink
chore: elide lifetimes
Browse files Browse the repository at this point in the history
  • Loading branch information
ctron committed Feb 9, 2024
1 parent caad335 commit 780b758
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ use std::process::Stdio;
use tokio::fs;
use tokio::process::Command;

pub static BUILDING: Emoji<'_, '_> = Emoji("📦 ", "");
pub static SUCCESS: Emoji<'_, '_> = Emoji("✅ ", "");
pub static ERROR: Emoji<'_, '_> = Emoji("❌ ", "");
pub static SERVER: Emoji<'_, '_> = Emoji("📡 ", "");
pub static LOCAL: Emoji<'_, '_> = Emoji("🏠 ", "");
pub static NETWORK: Emoji<'_, '_> = Emoji("💻 ", "");
pub static STARTING: Emoji<'_, '_> = Emoji("🚀 ", "");
pub static BUILDING: Emoji = Emoji("📦 ", "");
pub static SUCCESS: Emoji = Emoji("✅ ", "");
pub static ERROR: Emoji = Emoji("❌ ", "");
pub static SERVER: Emoji = Emoji("📡 ", "");
pub static LOCAL: Emoji = Emoji("🏠 ", "");
pub static NETWORK: Emoji = Emoji("💻 ", "");
pub static STARTING: Emoji = Emoji("🚀 ", "");

static CWD: Lazy<PathBuf> =
Lazy::new(|| std::env::current_dir().expect("error getting current dir"));
Expand Down

0 comments on commit 780b758

Please sign in to comment.