mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00

This PR modifies the `install-wheel-rs` (and a few other crates) to get everything playing nicely. Specifically, CI should pass, and all these crates now use workspace dependencies between one another. As part of this change, I split out the wheel name parsing into its own `wheel-filename` crate, and the compatibility tag parsing into its own `platform-tags` crate.
23 lines
672 B
TOML
23 lines
672 B
TOML
[package]
|
|
name = "puffin-installer"
|
|
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]
|
|
install-wheel-rs = { path = "../install-wheel-rs", default-features = false }
|
|
puffin-client = { path = "../puffin-client" }
|
|
puffin-interpreter = { path = "../puffin-interpreter" }
|
|
wheel-filename = { path = "../wheel-filename" }
|
|
|
|
anyhow = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tracing = { workspace = true }
|
|
url = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true }
|