mirror of https://github.com/astral-sh/uv
59 lines
1.8 KiB
TOML
59 lines
1.8 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" }
|
|
pubgrub = { path = "../../vendor/pubgrub" }
|
|
puffin-cache = { path = "../puffin-cache" }
|
|
puffin-client = { path = "../puffin-client" }
|
|
puffin-distribution = { path = "../puffin-distribution" }
|
|
puffin-git = { path = "../puffin-git" }
|
|
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 }
|
|
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 }
|
|
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 = []
|