mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-12 08:51:16 +00:00
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.
8 lines
191 B
Rust
8 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;
|