mirror of https://github.com/astral-sh/ruff
37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[package]
|
|
name = "flake8-to-ruff"
|
|
version = "0.0.290"
|
|
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_linter = { path = "../ruff_linter", default-features = false }
|
|
ruff_workspace = { path = "../ruff_workspace" }
|
|
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true }
|
|
colored = { workspace = true }
|
|
configparser = { version = "3.0.2" }
|
|
itertools = { workspace = true }
|
|
log = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
pep440_rs = { version = "0.3.1", features = ["serde"] }
|
|
regex = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
strum = { workspace = true }
|
|
strum_macros = { workspace = true }
|
|
toml = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.3.0"
|