2023-11-01 16:41:45 -07:00
|
|
|
[package]
|
2024-02-15 11:19:46 -06:00
|
|
|
name = "uv-cache"
|
2023-11-01 16:41:45 -07:00
|
|
|
version = "0.0.1"
|
|
|
|
|
description = "Generate stable hash digests across versions and platforms."
|
|
|
|
|
edition = { workspace = true }
|
|
|
|
|
rust-version = { workspace = true }
|
|
|
|
|
homepage = { workspace = true }
|
|
|
|
|
documentation = { workspace = true }
|
|
|
|
|
repository = { workspace = true }
|
|
|
|
|
authors = { workspace = true }
|
|
|
|
|
license = { workspace = true }
|
|
|
|
|
|
2023-11-22 15:10:27 +00:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
2023-11-01 16:41:45 -07:00
|
|
|
[dependencies]
|
2024-03-20 21:16:02 +01:00
|
|
|
cache-key = { workspace = true }
|
|
|
|
|
distribution-types = { workspace = true }
|
2024-03-21 22:46:39 -04:00
|
|
|
pypi-types = { workspace = true }
|
2024-04-12 11:39:47 +02:00
|
|
|
uv-fs = { workspace = true, features = ["tokio"] }
|
2024-03-20 21:16:02 +01:00
|
|
|
uv-normalize = { workspace = true }
|
2023-11-20 17:26:36 +01:00
|
|
|
|
2024-02-26 23:27:25 -05:00
|
|
|
clap = { workspace = true, features = ["derive", "env"], optional = true }
|
2023-11-16 21:49:48 +01:00
|
|
|
directories = { workspace = true }
|
2023-12-04 18:02:01 +01:00
|
|
|
fs-err = { workspace = true, features = ["tokio"] }
|
2024-01-24 00:05:14 -05:00
|
|
|
nanoid = { workspace = true }
|
2024-03-21 14:07:48 -04:00
|
|
|
rustc-hash = { workspace = true }
|
2023-12-06 17:47:01 +01:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
2023-11-16 21:49:48 +01:00
|
|
|
tempfile = { workspace = true }
|
2024-03-21 14:07:48 -04:00
|
|
|
tracing = { workspace = true }
|
2023-11-01 16:41:45 -07:00
|
|
|
url = { workspace = true }
|
2024-01-31 07:48:28 -08:00
|
|
|
walkdir = { workspace = true }
|
2024-03-21 22:46:39 -04:00
|
|
|
rmp-serde = { workspace = true }
|