diff --git a/Cargo.toml b/Cargo.toml index fb9e209e36..29941786c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,6 +9,7 @@ homepage = "https://beta.ruff.rs/docs/" documentation = "https://beta.ruff.rs/docs/" repository = "https://github.com/astral-sh/ruff" authors = ["Charlie Marsh "] +license = "MIT" [workspace.dependencies] anyhow = { version = "1.0.69" } diff --git a/crates/flake8_to_ruff/Cargo.toml b/crates/flake8_to_ruff/Cargo.toml index 05109e7495..7cfcfd33a0 100644 --- a/crates/flake8_to_ruff/Cargo.toml +++ b/crates/flake8_to_ruff/Cargo.toml @@ -1,8 +1,16 @@ [package] name = "flake8-to-ruff" version = "0.0.272" +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 } diff --git a/crates/ruff/Cargo.toml b/crates/ruff/Cargo.toml index f32364904b..53a1ea9376 100644 --- a/crates/ruff/Cargo.toml +++ b/crates/ruff/Cargo.toml @@ -1,14 +1,15 @@ [package] name = "ruff" version = "0.0.272" -authors.workspace = true -edition.workspace = true -rust-version.workspace = true -documentation.workspace = true -homepage.workspace = true -repository.workspace = true +publish = false +authors = { workspace = true } +edition = { workspace = true } +rust-version = { workspace = true } +homepage = { workspace = true } +documentation = { workspace = true } +repository = { workspace = true } +license = { workspace = true } readme = "README.md" -license = "MIT" [lib] name = "ruff" diff --git a/crates/ruff_benchmark/Cargo.toml b/crates/ruff_benchmark/Cargo.toml index f3d63336e0..56617c41d6 100644 --- a/crates/ruff_benchmark/Cargo.toml +++ b/crates/ruff_benchmark/Cargo.toml @@ -1,13 +1,15 @@ [package] name = "ruff_benchmark" version = "0.0.0" -publish = false -edition.workspace = true -authors.workspace = true -homepage.workspace = true -documentation.workspace = true -repository.workspace = true description = "Ruff Micro-benchmarks" +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] bench = false diff --git a/crates/ruff_cache/Cargo.toml b/crates/ruff_cache/Cargo.toml index b38e4cba04..89445ed6c8 100644 --- a/crates/ruff_cache/Cargo.toml +++ b/crates/ruff_cache/Cargo.toml @@ -2,8 +2,13 @@ name = "ruff_cache" 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 } [dependencies] itertools = { workspace = true } diff --git a/crates/ruff_cli/Cargo.toml b/crates/ruff_cli/Cargo.toml index b45d8557e4..0cdd5b765f 100644 --- a/crates/ruff_cli/Cargo.toml +++ b/crates/ruff_cli/Cargo.toml @@ -1,14 +1,15 @@ [package] name = "ruff_cli" version = "0.0.272" -authors = ["Charlie Marsh "] +publish = false +authors = { workspace = true } edition = { workspace = true } rust-version = { workspace = true } -documentation = "https://github.com/astral-sh/ruff" -homepage = "https://github.com/astral-sh/ruff" -repository = "https://github.com/astral-sh/ruff" +homepage = { workspace = true } +documentation = { workspace = true } +repository = { workspace = true } +license = { workspace = true } readme = "../../README.md" -license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/ruff_dev/Cargo.toml b/crates/ruff_dev/Cargo.toml index 4fa0405c9a..376bb09b8e 100644 --- a/crates/ruff_dev/Cargo.toml +++ b/crates/ruff_dev/Cargo.toml @@ -2,8 +2,13 @@ name = "ruff_dev" 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 } [dependencies] ruff = { path = "../ruff", features = ["schemars"] } diff --git a/crates/ruff_diagnostics/Cargo.toml b/crates/ruff_diagnostics/Cargo.toml index 980abbbc51..9921f41124 100644 --- a/crates/ruff_diagnostics/Cargo.toml +++ b/crates/ruff_diagnostics/Cargo.toml @@ -2,8 +2,13 @@ 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] diff --git a/crates/ruff_formatter/Cargo.toml b/crates/ruff_formatter/Cargo.toml index 593b47e359..17d2a6b549 100644 --- a/crates/ruff_formatter/Cargo.toml +++ b/crates/ruff_formatter/Cargo.toml @@ -2,8 +2,13 @@ name = "ruff_formatter" 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 } [dependencies] ruff_text_size = { workspace = true } diff --git a/crates/ruff_index/Cargo.toml b/crates/ruff_index/Cargo.toml index 77e1c3fb56..29e55d60b4 100644 --- a/crates/ruff_index/Cargo.toml +++ b/crates/ruff_index/Cargo.toml @@ -2,8 +2,13 @@ name = "ruff_index" 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] diff --git a/crates/ruff_macros/Cargo.toml b/crates/ruff_macros/Cargo.toml index f774aee299..6b48c144cd 100644 --- a/crates/ruff_macros/Cargo.toml +++ b/crates/ruff_macros/Cargo.toml @@ -2,8 +2,13 @@ name = "ruff_macros" 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] proc-macro = true diff --git a/crates/ruff_python_ast/Cargo.toml b/crates/ruff_python_ast/Cargo.toml index 14726020cd..855655b8ee 100644 --- a/crates/ruff_python_ast/Cargo.toml +++ b/crates/ruff_python_ast/Cargo.toml @@ -2,8 +2,13 @@ name = "ruff_python_ast" 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] diff --git a/crates/ruff_python_formatter/Cargo.toml b/crates/ruff_python_formatter/Cargo.toml index bd5526bc43..708b77c8f9 100644 --- a/crates/ruff_python_formatter/Cargo.toml +++ b/crates/ruff_python_formatter/Cargo.toml @@ -2,8 +2,13 @@ name = "ruff_python_formatter" 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 } [dependencies] ruff_formatter = { path = "../ruff_formatter" } diff --git a/crates/ruff_python_semantic/Cargo.toml b/crates/ruff_python_semantic/Cargo.toml index 3716d2c103..93c47dae9d 100644 --- a/crates/ruff_python_semantic/Cargo.toml +++ b/crates/ruff_python_semantic/Cargo.toml @@ -2,8 +2,13 @@ name = "ruff_python_semantic" 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] diff --git a/crates/ruff_python_stdlib/Cargo.toml b/crates/ruff_python_stdlib/Cargo.toml index c698a0adf5..91e43d5377 100644 --- a/crates/ruff_python_stdlib/Cargo.toml +++ b/crates/ruff_python_stdlib/Cargo.toml @@ -2,8 +2,13 @@ name = "ruff_python_stdlib" 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] diff --git a/crates/ruff_python_whitespace/Cargo.toml b/crates/ruff_python_whitespace/Cargo.toml index 584418405b..cbfc1aea24 100644 --- a/crates/ruff_python_whitespace/Cargo.toml +++ b/crates/ruff_python_whitespace/Cargo.toml @@ -2,8 +2,13 @@ name = "ruff_python_whitespace" 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] diff --git a/crates/ruff_rustpython/Cargo.toml b/crates/ruff_rustpython/Cargo.toml index e66ba4caa6..e6c0bc0005 100644 --- a/crates/ruff_rustpython/Cargo.toml +++ b/crates/ruff_rustpython/Cargo.toml @@ -2,8 +2,13 @@ name = "ruff_rustpython" 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] diff --git a/crates/ruff_testing_macros/Cargo.toml b/crates/ruff_testing_macros/Cargo.toml index 215168923c..49daf16a71 100644 --- a/crates/ruff_testing_macros/Cargo.toml +++ b/crates/ruff_testing_macros/Cargo.toml @@ -1,8 +1,14 @@ [package] name = "ruff_testing_macros" -edition = "2021" 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] proc-macro = true diff --git a/crates/ruff_textwrap/Cargo.toml b/crates/ruff_textwrap/Cargo.toml index 864a259d33..9b721596c6 100644 --- a/crates/ruff_textwrap/Cargo.toml +++ b/crates/ruff_textwrap/Cargo.toml @@ -2,8 +2,13 @@ name = "ruff_textwrap" 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 } [dependencies] ruff_python_whitespace = { path = "../ruff_python_whitespace" } diff --git a/crates/ruff_wasm/Cargo.toml b/crates/ruff_wasm/Cargo.toml index 7ad96d646b..5383edfa78 100644 --- a/crates/ruff_wasm/Cargo.toml +++ b/crates/ruff_wasm/Cargo.toml @@ -2,8 +2,13 @@ name = "ruff_wasm" 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 } description = "WebAssembly bindings for Ruff" [lib]