mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00
27 lines
865 B
TOML
27 lines
865 B
TOML
[package]
|
|
name = "puffin-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
puffin-client = { path = "../puffin-client" }
|
|
puffin-installer = { path = "../puffin-installer" }
|
|
puffin-interpreter = { path = "../puffin-interpreter" }
|
|
puffin-platform = { path = "../puffin-platform" }
|
|
puffin-package = { path = "../puffin-package" }
|
|
puffin-resolver = { path = "../puffin-resolver" }
|
|
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
colored = { workspace = true }
|
|
directories = { workspace = true }
|
|
futures = { workspace = true }
|
|
install-wheel-rs = { workspace = true }
|
|
pep508_rs = { workspace = true }
|
|
pep440_rs = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-tree = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
url = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true }
|