bf71e7adcf
I added output in graphviz DOT format to `puffin-dev resolve-cli` to
help with debugging resolutions. This requires tracking the requested
ranges in the graph. I also fixed the direction of the graph.
Output for `black`:
```dot
digraph {
0 [ label="click\n8.1.7"]
1 [ label="black\n23.11.0"]
2 [ label="packaging\n23.2"]
3 [ label="mypy-extensions\n1.0.0"]
4 [ label="tomli\n2.0.1"]
5 [ label="pathspec\n0.11.2"]
6 [ label="typing-extensions\n4.8.0"]
7 [ label="platformdirs\n4.0.0"]
1 -> 0 [ label=">=8.0.0"]
1 -> 3 [ label=">=0.4.3"]
1 -> 5 [ label=">=0.9.0"]
1 -> 4 [ label=">=1.1.0"]
1 -> 6 [ label=">=4.0.1"]
1 -> 2 [ label=">=22.0"]
1 -> 7 [ label=">=2"]
}
```

transformers:

jupyter:

50 lines
1.7 KiB
TOML
50 lines
1.7 KiB
TOML
[package]
|
|
name = "puffin-dev"
|
|
version = "0.0.1"
|
|
description = "Build wheels from source distributions"
|
|
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" }
|
|
gourgeist = { path = "../gourgeist" }
|
|
pep508_rs = { path = "../pep508-rs" }
|
|
platform-host = { path = "../platform-host" }
|
|
platform-tags = { path = "../platform-tags" }
|
|
puffin-build = { path = "../puffin-build" }
|
|
puffin-cache = { path = "../puffin-cache", features = ["clap"] }
|
|
puffin-client = { path = "../puffin-client" }
|
|
puffin-dispatch = { path = "../puffin-dispatch" }
|
|
puffin-interpreter = { path = "../puffin-interpreter" }
|
|
puffin-resolver = { path = "../puffin-resolver" }
|
|
pypi-types = { path = "../pypi-types" }
|
|
puffin-traits = { path = "../puffin-traits" }
|
|
|
|
anstream = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
colored = { workspace = true }
|
|
fs-err = { workspace = true }
|
|
futures = { workspace = true }
|
|
indicatif = { workspace = true }
|
|
itertools = { workspace = true }
|
|
petgraph = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-indicatif = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
which = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
mimalloc = "0.1.39"
|
|
|
|
[target.'cfg(all(not(target_os = "windows"), not(target_os = "openbsd"), any(target_arch = "x86_64", target_arch = "aarch64", target_arch = "powerpc64")))'.dependencies]
|
|
tikv-jemallocator = "0.5.0"
|