Skip to content

Commit

Permalink
Applied formatted strucutre to original changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alshdavid authored and David Alsh committed May 8, 2024
1 parent 6ab0593 commit fe77200
Show file tree
Hide file tree
Showing 104 changed files with 2,481 additions and 3,130 deletions.
1,411 changes: 694 additions & 717 deletions Cargo.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion crates/core/src/cache.rs → crates/core/src/cache/cache.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use dashmap::DashMap;
use std::ops::Deref;

use dashmap::DashMap;

pub struct Cache {
entries: DashMap<String, Vec<u8>>,
}
Expand Down
6 changes: 6 additions & 0 deletions crates/core/src/cache/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/*
This module holds the implementation for the Parcel cache
*/
mod cache;

pub use self::cache::*;
Loading

0 comments on commit fe77200

Please sign in to comment.