figsoda 2023-03-22 17:19:26 -04:00
parent 0bc15605ce
commit c62c9ae27a
2 changed files with 8 additions and 11 deletions

View file

@ -780,7 +780,7 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
[[package]] [[package]]
name = "flake8-to-ruff" name = "flake8-to-ruff"
version = "0.0.257" version = "0.0.258"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"clap 4.1.8", "clap 4.1.8",
@ -1982,7 +1982,7 @@ dependencies = [
[[package]] [[package]]
name = "ruff" name = "ruff"
version = "0.0.257" version = "0.0.258"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"bisection", "bisection",
@ -1990,7 +1990,6 @@ dependencies = [
"chrono", "chrono",
"clap 4.1.8", "clap 4.1.8",
"colored", "colored",
"criterion",
"dirs", "dirs",
"fern", "fern",
"glob", "glob",
@ -2025,6 +2024,7 @@ dependencies = [
"schemars", "schemars",
"semver", "semver",
"serde", "serde",
"serde_json",
"shellexpand", "shellexpand",
"smallvec", "smallvec",
"strum", "strum",
@ -2063,7 +2063,7 @@ dependencies = [
[[package]] [[package]]
name = "ruff_cli" name = "ruff_cli"
version = "0.0.257" version = "0.0.258"
dependencies = [ dependencies = [
"annotate-snippets 0.9.1", "annotate-snippets 0.9.1",
"anyhow", "anyhow",
@ -2091,6 +2091,7 @@ dependencies = [
"ruff", "ruff",
"ruff_cache", "ruff_cache",
"ruff_diagnostics", "ruff_diagnostics",
"ruff_python_stdlib",
"rustc-hash", "rustc-hash",
"serde", "serde",
"serde_json", "serde_json",
@ -2210,7 +2211,6 @@ name = "ruff_python_stdlib"
version = "0.0.0" version = "0.0.0"
dependencies = [ dependencies = [
"once_cell", "once_cell",
"regex",
"rustc-hash", "rustc-hash",
] ]
@ -2505,6 +2505,7 @@ version = "1.0.93"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76" checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76"
dependencies = [ dependencies = [
"indexmap",
"itoa", "itoa",
"ryu", "ryu",
"serde", "serde",

View file

@ -8,13 +8,13 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "ruff"; pname = "ruff";
version = "0.0.257"; version = "0.0.258";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "charliermarsh"; owner = "charliermarsh";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-PkKUQPkZtwqvWhWsO4Pej/T1haJvMP7HpF6XjZSoqQg="; hash = "sha256-rlMghh6NmyIJTdjf6xmzVuevXh/OrBqhx+CkvvQwlng=";
}; };
# We have to use importCargoLock here because `cargo vendor` currently doesn't support workspace # We have to use importCargoLock here because `cargo vendor` currently doesn't support workspace
@ -23,12 +23,8 @@ rustPlatform.buildRustPackage rec {
lockFile = ./Cargo.lock; lockFile = ./Cargo.lock;
outputHashes = { outputHashes = {
"libcst-0.1.0" = "sha256-jG9jYJP4reACkFLrQBWOYH6nbKniNyFVItD0cTZ+nW0="; "libcst-0.1.0" = "sha256-jG9jYJP4reACkFLrQBWOYH6nbKniNyFVItD0cTZ+nW0=";
"libcst_derive-0.1.0" = "sha256-jG9jYJP4reACkFLrQBWOYH6nbKniNyFVItD0cTZ+nW0=";
"pep440_rs-0.2.0" = "sha256-wDJGz7SbHItYsg0+EgIoH48WFdV6MEg+HkeE07JE6AU="; "pep440_rs-0.2.0" = "sha256-wDJGz7SbHItYsg0+EgIoH48WFdV6MEg+HkeE07JE6AU=";
"rustpython-ast-0.2.0" = "sha256-0SHtycgDVOtiz7JZwd1v9lv2exxemcntm9lciih+pgc="; "rustpython-ast-0.2.0" = "sha256-0SHtycgDVOtiz7JZwd1v9lv2exxemcntm9lciih+pgc=";
"rustpython-common-0.2.0" = "sha256-0SHtycgDVOtiz7JZwd1v9lv2exxemcntm9lciih+pgc=";
"rustpython-compiler-core-0.2.0" = "sha256-0SHtycgDVOtiz7JZwd1v9lv2exxemcntm9lciih+pgc=";
"rustpython-parser-0.2.0" = "sha256-0SHtycgDVOtiz7JZwd1v9lv2exxemcntm9lciih+pgc=";
"unicode_names2-0.6.0" = "sha256-eWg9+ISm/vztB0KIdjhq5il2ZnwGJQCleCYfznCI3Wg="; "unicode_names2-0.6.0" = "sha256-eWg9+ISm/vztB0KIdjhq5il2ZnwGJQCleCYfznCI3Wg=";
}; };
}; };