mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00
21 lines
535 B
TOML
21 lines
535 B
TOML
[package]
|
|
name = "puffin-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
puffin-requirements = { path = "../puffin-requirements" }
|
|
puffin-client = { path = "../puffin-client" }
|
|
|
|
anyhow = "1.0.75"
|
|
clap = { version = "4.4.6", features = ["derive"] }
|
|
colored = { version = "2.0.4" }
|
|
memchr = { version = "2.6.4" }
|
|
async-std = { version = "1.12.0", features = [
|
|
"attributes",
|
|
"tokio1",
|
|
"unstable",
|
|
] }
|
|
futures = "0.3.28"
|