summaryrefslogtreecommitdiffstats
path: root/src/launcher/constants.rs
blob: 698081b126f30f6558f826f819fed3467716a4dc (plain) (blame)
1
2
3
4
5
6
7
8
use const_format::formatcp;

const PKG_NAME: &str = env!("CARGO_PKG_NAME");
const PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
const CRATE_NAME: &str = env!("CARGO_CRATE_NAME");

pub const USER_AGENT: &str = formatcp!("{PKG_NAME}/{PKG_VERSION} (in {CRATE_NAME})");
pub const URL_VERSION_MANIFEST: &str = "https://piston-meta.mojang.com/mc/game/version_manifest_v2.json";