mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-03 18:38:21 +00: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).
17 lines
270 B
TOML
17 lines
270 B
TOML
[package]
|
|
name = "uv-macros"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = { workspace = true }
|
|
quote = { workspace = true }
|
|
syn = { workspace = true }
|
|
textwrap = { workspace = true }
|