uv/crates/puffin-resolver/Cargo.toml
Charlie Marsh c8477991a9
Use local versions of PEP 440 and PEP 508 crates (#32)
This PR modifies the PEP 440 and PEP 508 crates to pass CI, primarily by
fixing all lint violations.

We're also now using these crates in the workspace via `path`.
(Previously, we were still fetching them from Cargo.)
2023-10-07 00:16:44 +00:00

22 lines
604 B
TOML

[package]
name = "puffin-resolver"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
homepage.workspace = true
documentation.workspace = true
repository.workspace = true
authors.workspace = true
license.workspace = true
[dependencies]
puffin-client = { path = "../puffin-client" }
puffin-platform = { path = "../puffin-platform" }
puffin-package = { path = "../puffin-package" }
anyhow = { workspace = true }
bitflags = { workspace = true }
futures = { workspace = true }
pep440_rs = { path = "../pep440-rs" }
pep508_rs = { path = "../pep508-rs" }
tracing = { workspace = true }