Address concerns

This commit is contained in:
l1npengtul
2022-11-01 00:59:07 +09:00
parent 87e51cb8fe
commit bb01f914e0
9 changed files with 404 additions and 124 deletions

View File

@@ -20,9 +20,9 @@ fn main() {
contents = contents.replace("{{AHASH_SEED}}", &seed);
File::create("src/config.rs")
File::create("src/config/hashing.rs")
.expect("cannot create `config.rs`")
.write_all(contents.as_bytes())
.expect("cannot write to `config.rs`");
.expect("cannot write to `config/hashing.rs`");
}
}