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

## Summary This crate only contains types, and I want to introduce a new crate for all _operations_ on distributions, so this feels like a more natural name given we also have `pypi-types`.
61 lines
2 KiB
TOML
61 lines
2 KiB
TOML
[package]
|
|
name = "puffin-resolver"
|
|
version = "0.0.1"
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[dependencies]
|
|
distribution-filename = { path = "../distribution-filename" }
|
|
install-wheel-rs = { path = "../install-wheel-rs" }
|
|
pep440_rs = { path = "../pep440-rs" }
|
|
pep508_rs = { path = "../pep508-rs" }
|
|
platform-host = { path = "../platform-host" }
|
|
platform-tags = { path = "../platform-tags" }
|
|
puffin-cache = { path = "../puffin-cache" }
|
|
puffin-client = { path = "../puffin-client" }
|
|
distribution-types = { path = "../distribution-types" }
|
|
puffin-git = { path = "../puffin-git" }
|
|
puffin-interpreter = { path = "../puffin-interpreter" }
|
|
puffin-macros = { path = "../puffin-macros" }
|
|
puffin-normalize = { path = "../puffin-normalize" }
|
|
puffin-traits = { path = "../puffin-traits" }
|
|
pypi-types = { path = "../pypi-types" }
|
|
|
|
anyhow = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"], optional = true }
|
|
chrono = { workspace = true }
|
|
colored = { workspace = true }
|
|
fs-err = { workspace = true, features = ["tokio"] }
|
|
futures = { workspace = true }
|
|
fxhash = { workspace = true }
|
|
itertools = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
petgraph = { workspace = true }
|
|
pubgrub = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true, features = ["compat"] }
|
|
tracing = { workspace = true }
|
|
url = { workspace = true }
|
|
waitmap = { workspace = true }
|
|
zip = { workspace = true }
|
|
derivative = { version = "2.2.0" }
|
|
sha2 = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
gourgeist = { path = "../gourgeist" }
|
|
puffin-interpreter = { path = "../puffin-interpreter" }
|
|
|
|
once_cell = { version = "1.18.0" }
|
|
insta = { version = "1.34.0" }
|
|
|
|
[features]
|
|
# Introduces a dependency on PyPI.
|
|
pypi = []
|