fix: remove debugging code

This commit is contained in:
beerpsi 2024-01-03 00:41:09 +07:00
parent 2c3d165a70
commit 401fb278cc
3 changed files with 2 additions and 4 deletions

2
Cargo.lock generated
View File

@ -294,7 +294,7 @@ dependencies = [
[[package]]
name = "icf-reader"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"aes",
"anyhow",

View File

@ -1,6 +1,6 @@
[package]
name = "icf-reader"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -92,8 +92,6 @@ fn main() -> Result<(), anyhow::Error> {
let icf: Vec<IcfData> = serde_json::from_str(&input)?;
let out = serialize_icf(&icf)?;
std::fs::write("test.bin", &out)?;
let encrypted = encrypt_icf(&out, ICF_KEY, ICF_IV)?;
std::fs::write(output, encrypted)?;