diff --git a/Cargo.lock b/Cargo.lock index 64bf443..32afdc1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -294,7 +294,7 @@ dependencies = [ [[package]] name = "icf-reader" -version = "0.1.2" +version = "0.1.3" dependencies = [ "aes", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 656855f..49fb034 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 diff --git a/src/main.rs b/src/main.rs index 40a1470..d121f8c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -92,8 +92,6 @@ fn main() -> Result<(), anyhow::Error> { let icf: Vec = 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)?;