24e30e6557
There are only two things left in this crate and they don't really have anything to do with one another.
71 lines
2.3 KiB
TOML
71 lines
2.3 KiB
TOML
[package]
|
|
name = "puffin-cli"
|
|
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 }
|
|
|
|
[[bin]]
|
|
name = "puffin"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
gourgeist = { path = "../gourgeist" }
|
|
install-wheel-rs = { path = "../install-wheel-rs", default-features = false }
|
|
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-client = { path = "../puffin-client" }
|
|
puffin-dispatch = { path = "../puffin-dispatch" }
|
|
puffin-distribution = { path = "../puffin-distribution" }
|
|
puffin-installer = { path = "../puffin-installer" }
|
|
puffin-interpreter = { path = "../puffin-interpreter" }
|
|
puffin-normalize = { path = "../puffin-normalize" }
|
|
pypi-types = { path = "../pypi-types" }
|
|
requirements-txt = { path = "../requirements-txt" }
|
|
puffin-resolver = { path = "../puffin-resolver", features = ["clap"] }
|
|
puffin-workspace = { path = "../puffin-workspace" }
|
|
|
|
anyhow = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
cacache = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
colored = { workspace = true }
|
|
directories = { workspace = true }
|
|
fs-err = { workspace = true, features = ["tokio"] }
|
|
futures = { workspace = true }
|
|
indicatif = { workspace = true }
|
|
itertools = { workspace = true }
|
|
miette = { workspace = true, features = ["fancy"] }
|
|
pyproject-toml = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
toml = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
tracing-tree = { workspace = true }
|
|
url = { workspace = true }
|
|
which = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = { version = "2.0.12" }
|
|
assert_fs = { version = "1.0.13" }
|
|
insta-cmd = { version = "0.4.0" }
|
|
insta = { version = "1.34.0", features = ["filters"] }
|
|
predicates = { version = "3.0.4" }
|
|
|
|
[features]
|
|
# Introduces a dependency on a local Python installation.
|
|
python = []
|
|
# Introduces a dependency on PyPI.
|
|
pypi = []
|
|
# Introduces a dependency on Git.
|
|
git = []
|