mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +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.
19 lines
507 B
TOML
19 lines
507 B
TOML
[package]
|
|
name = "cache-key"
|
|
version = "0.0.1"
|
|
description = "Generic functionality for caching paths, URLs, and other resources across platforms."
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
hex = { workspace = true }
|
|
seahash = { workspace = true }
|
|
url = { workspace = true }
|