Skip to content

Commit

Permalink
fix: merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwalker committed Mar 8, 2024
1 parent 35d36d5 commit 5c8cddf
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions verifier/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
#![cfg_attr(not(feature = "std"), no_std)]
#![no_std]

extern crate alloc;

#[cfg(feature = "std")]
extern crate std;

use air::{HashFunction, ProcessorAir, ProvingOptions, PublicInputs};
use alloc::vec;
use core::fmt;
use vm_core::{
crypto::{
hash::{Blake3_192, Blake3_256, Rpo256},
random::{RpoRandomCoin, WinterRandomCoin},
},
utils::vec,
use vm_core::crypto::{
hash::{Blake3_192, Blake3_256, Rpo256},
random::{RpoRandomCoin, WinterRandomCoin},
};
use winter_verifier::verify as verify_proof;

Expand Down

0 comments on commit 5c8cddf

Please sign in to comment.