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

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.)
22 lines
590 B
TOML
22 lines
590 B
TOML
[package]
|
|
name = "puffin-platform"
|
|
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]
|
|
glibc_version = { workspace = true }
|
|
goblin = { workspace = true }
|
|
pep440_rs = { path = "../pep440-rs" }
|
|
platform-info = { workspace = true }
|
|
plist = { workspace = true }
|
|
regex = { workspace = true }
|
|
serde = { workspace = true }
|
|
target-lexicon = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|