mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-04 18:58:04 +00:00
29 lines
821 B
TOML
29 lines
821 B
TOML
[package]
|
|
name = "flake8-to-ruff"
|
|
version = "0.0.282"
|
|
description = """
|
|
Convert Flake8 configuration files to Ruff configuration files.
|
|
"""
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[dependencies]
|
|
ruff = { path = "../ruff", default-features = false }
|
|
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true }
|
|
colored = { workspace = true }
|
|
configparser = { version = "3.0.2" }
|
|
once_cell = { workspace = true }
|
|
regex = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
strum = { workspace = true }
|
|
strum_macros = { workspace = true }
|
|
toml = { workspace = true }
|