1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- use std::env;
- use std::fs::File;
- use std::io::{self, Write};
- use std::path::PathBuf;
- use datetime::{LocalDateTime, ISO};
- use regex::Regex;
- fn main() -> io::Result<()> {
- let usage = include_str!("src/usage.txt");
- let tagline = "dog \\1;32m●\\0m command-line DNS client";
- let url = "https://dns.lookup.dog/";
- let ver = if is_development_version() {
- format!("{}\nv{} [{}] built on {} \\1;31m(pre-release!)\\0m\n\\1;4;34m{}\\0m", tagline, cargo_version(), git_hash(), build_date(), url)
- }
- else {
- format!("{}\nv{}\n\\1;4;34m{}\\0m", tagline, cargo_version(), url)
- };
-
- let out = PathBuf::from(env::var("OUT_DIR").unwrap());
-
- let control_code = Regex::new(r##"\\.+?m"##).unwrap();
-
- let mut f = File::create(&out.join("version.pretty.txt"))?;
- write!(f, "{}\n", ver.replace("\\", "\x1B["))?;
-
- let mut f = File::create(&out.join("version.bland.txt"))?;
- write!(f, "{}\n", control_code.replace_all(&ver, ""))?;
-
- let mut f = File::create(&out.join("usage.pretty.txt"))?;
- write!(f, "{}\n\n{}", tagline.replace("\\", "\x1B["), usage.replace("\\", "\x1B["))?;
-
- let mut f = File::create(&out.join("usage.bland.txt"))?;
- write!(f, "{}\n\n{}", control_code.replace_all(tagline, ""), control_code.replace_all(usage, ""))?;
- Ok(())
- }
- fn git_hash() -> String {
- use std::process::Command;
- String::from_utf8_lossy(
- &Command::new("git")
- .args(&["rev-parse", "--short", "HEAD"])
- .output().unwrap()
- .stdout).trim().to_string()
- }
- fn is_development_version() -> bool {
- cargo_version().ends_with("-pre") || env::var("PROFILE").unwrap() == "debug"
- }
- fn cargo_version() -> String {
- env::var("CARGO_PKG_VERSION").unwrap()
- }
- fn build_date() -> String {
- let now = LocalDateTime::now();
- format!("{}", now.date().iso())
- }
|