Skip to content

Commit

Permalink
Make cache::aot & cache::jit modules public (#410)
Browse files Browse the repository at this point in the history
The structs and methods in both of these modules are public but their modules are not. This makes it impossible to create a `PorgramCache` from starknet_in_rust
  • Loading branch information
fmoletta authored Dec 22, 2023
1 parent a78859c commit 16b36c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cache.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pub use self::{aot::AotProgramCache, jit::JitProgramCache};
use std::hash::Hash;

mod aot;
mod jit;
pub mod aot;
pub mod jit;

#[derive(Debug)]
pub enum ProgramCache<'a, K>
Expand Down

0 comments on commit 16b36c8

Please sign in to comment.