mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-04 10:48:32 +00:00

## Summary This PR modifies our `Cargo.toml` files to use workspace dependencies for _all_ dependencies, rather than the status quo of sporadically trying to use workspace dependencies for those dependencies that are used across multiple crates. I find the current situation more confusing and harder to manage, since we have a mix of workspace and crate-local dependencies, whereas this setup consistently uses the same approach for all dependencies.
25 lines
547 B
TOML
25 lines
547 B
TOML
[package]
|
|
name = "ruff_python_resolver"
|
|
version = "0.0.0"
|
|
description = "A Python module resolver for Ruff"
|
|
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]
|
|
|
|
[dependencies]
|
|
log = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
env_logger = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
insta = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|