mirror of
https://github.com/astral-sh/uv
synced 2026-01-22 05:50:25 -05:00
As per https://matklad.github.io/2021/02/27/delete-cargo-integration-tests.html Before that, there were 91 separate integration tests binary. (As discussed on Discord — I've done the `uv` crate, there's still a few more commits coming before this is mergeable, and I want to see how it performs in CI and locally).
26 lines
581 B
TOML
26 lines
581 B
TOML
[package]
|
|
name = "uv-scripts"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
description = "Parse PEP 723-style Python scripts."
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
uv-pep440 = { workspace = true }
|
|
uv-pep508 = { workspace = true }
|
|
uv-pypi-types = { workspace = true }
|
|
uv-settings = { workspace = true }
|
|
uv-workspace = { workspace = true }
|
|
|
|
fs-err = { workspace = true, features = ["tokio"] }
|
|
indoc = { workspace = true }
|
|
memchr = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
thiserror = { workspace = true }
|
|
toml = { workspace = true }
|