sntpc 0.9.0

Library for making SNTP requests
Documentation
use std::process::Command;

use chrono::{DateTime, Datelike, Local, Timelike};

/// Synchronize system time with the platform specific
/// command line tool
pub(super) fn sync_time(time: DateTime<Local>) {
    let cmd = Command::new("cmd")
        .args([
            "/C",
            format!(
                "powershell Set-Date -Date \"{}/{}/{} {}:{}:{}\"",
                time.day(),
                time.month(),
                time.year(),
                time.hour(),
                time.minute(),
                time.second()
            )
            .as_str(),
        ])
        .spawn();

    match cmd {
        Ok(mut child) => {
            child.wait().expect("Time synchronization finished incorrectly");
        }
        Err(e) => {
            eprintln!("Error occurred: {e}");
        }
    }
}