6ff21374dc
This crate started off as generic caching utilities, but we started adding a lot of Puffin-specific stuff (like the cache buckets abstraction that knows about Git vs. direct URL vs. indexes and so on). This PR moves the generic stuff into a new `cache-key` crate.
9 lines
191 B
Rust
9 lines
191 B
Rust
pub use canonical_url::{CanonicalUrl, RepositoryUrl};
|
|
pub use digest::digest;
|
|
pub use stable_hash::{StableHash, StableHasher};
|
|
|
|
mod cache_key;
|
|
mod canonical_url;
|
|
mod digest;
|
|
mod stable_hash;
|