cargo fmt

This commit is contained in:
Kevaundray Wedderburn
2025-05-13 17:24:20 +01:00
parent 6d9fa033cb
commit ab61086d8a

View File

@@ -1,4 +1,6 @@
use ark_serialize::{CanonicalDeserialize, CanonicalSerialize, SerializationError};
use jolt::JoltHyperKZGProof;
use std::io::Cursor;
use std::{fs, path::Path};
use toml::Value;
@@ -20,9 +22,6 @@ pub(crate) fn package_name_from_manifest(manifest_path: &Path) -> Result<String,
.ok_or_else(|| panic!("no [package] name found in {}", manifest_path.display()))
}
use ark_serialize::{CanonicalDeserialize, CanonicalSerialize, SerializationError};
use std::io::Cursor;
/// Serializes the public input (as raw bytes) and proof into a single byte vector
pub fn serialize_public_input_with_proof(
public_input: &Vec<u8>,