mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 02:48:17 +00:00

## Summary This lets us drop a dependency entirely. `percent-encoding` is used by `url` and so is already in the graph, whereas `urlencoding` isn't used by anything else.
24 lines
603 B
TOML
24 lines
603 B
TOML
[package]
|
|
name = "uv-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 }
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
hex = { workspace = true }
|
|
memchr = { workspace = true }
|
|
percent-encoding = { workspace = true }
|
|
seahash = { workspace = true }
|
|
url = { workspace = true }
|