mirror of
https://github.com/astral-sh/uv
synced 2026-01-22 05:50:25 -05:00
## Summary This is a follow-on to #11347 to use a stable directory for remote and stdin scripts. The annoying piece here was figuring out what to use as the cache key. For remote scripts, I'm using the URL; for stdin scripts, there isn't any identifying information, so I'm just using a hash of the metadata.
27 lines
608 B
TOML
27 lines
608 B
TOML
[package]
|
|
name = "uv-scripts"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
description = "Parse PEP 723-style Python scripts."
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
uv-pep440 = { workspace = true }
|
|
uv-pep508 = { workspace = true }
|
|
uv-pypi-types = { workspace = true }
|
|
uv-settings = { workspace = true }
|
|
uv-workspace = { workspace = true }
|
|
|
|
fs-err = { workspace = true, features = ["tokio"] }
|
|
indoc = { workspace = true }
|
|
memchr = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
thiserror = { workspace = true }
|
|
toml = { workspace = true }
|
|
url = { workspace = true }
|