mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-04 02:38:25 +00:00

## Summary This matches the setup we use in `uv` and allows for consistency in the `Cargo.toml` files.
22 lines
530 B
TOML
22 lines
530 B
TOML
[package]
|
|
name = "ruff_diagnostics"
|
|
version = "0.0.0"
|
|
publish = false
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
ruff_text_size = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
log = { workspace = true }
|
|
is-macro = { workspace = true }
|
|
serde = { workspace = true, optional = true, features = [] }
|