This commit is contained in:
nora 2022-03-04 22:15:19 +01:00
parent 93ce632b5d
commit 4346db648f
24 changed files with 224 additions and 209 deletions

View file

@ -6,13 +6,15 @@ mod write;
use anyhow::{bail, Context};
use heck::ToUpperCamelCase;
use std::fs;
use std::fs::File;
use std::io::Write;
use std::iter::Peekable;
use std::path::{Path, PathBuf};
use std::process::Command;
use std::str::FromStr;
use std::{
fs,
fs::File,
io::Write,
iter::Peekable,
path::{Path, PathBuf},
process::Command,
str::FromStr,
};
use strong_xml::XmlRead;
#[derive(Debug, XmlRead)]

View file

@ -1,7 +1,6 @@
use crate::project_root;
use anyhow::{ensure, Context, Result};
use std::path::Path;
use std::process::Command;
use std::{path::Path, process::Command};
pub fn main() -> Result<()> {
let project_root = project_root();