diff --git a/Cargo.lock b/Cargo.lock index 3180c758c3..5fe1d944c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2880,7 +2880,7 @@ dependencies = [ [[package]] name = "ruff_python_ast" version = "0.0.0" -source = "git+https://github.com/astral-sh/ruff.git?rev=e4c7f357777a2fdd34dbe6a98b1b7d3e7488f675#e4c7f357777a2fdd34dbe6a98b1b7d3e7488f675" +source = "git+https://github.com/astral-sh/ruff.git?rev=c2a8815842f9dc5d24ec19385eae0f1a7188b0d9#c2a8815842f9dc5d24ec19385eae0f1a7188b0d9" dependencies = [ "aho-corasick", "bitflags 2.11.0", @@ -2898,7 +2898,7 @@ dependencies = [ [[package]] name = "ruff_python_parser" version = "0.0.0" -source = "git+https://github.com/astral-sh/ruff.git?rev=e4c7f357777a2fdd34dbe6a98b1b7d3e7488f675#e4c7f357777a2fdd34dbe6a98b1b7d3e7488f675" +source = "git+https://github.com/astral-sh/ruff.git?rev=c2a8815842f9dc5d24ec19385eae0f1a7188b0d9#c2a8815842f9dc5d24ec19385eae0f1a7188b0d9" dependencies = [ "bitflags 2.11.0", "bstr", @@ -2918,7 +2918,7 @@ dependencies = [ [[package]] name = "ruff_python_trivia" version = "0.0.0" -source = "git+https://github.com/astral-sh/ruff.git?rev=e4c7f357777a2fdd34dbe6a98b1b7d3e7488f675#e4c7f357777a2fdd34dbe6a98b1b7d3e7488f675" +source = "git+https://github.com/astral-sh/ruff.git?rev=c2a8815842f9dc5d24ec19385eae0f1a7188b0d9#c2a8815842f9dc5d24ec19385eae0f1a7188b0d9" dependencies = [ "itertools 0.14.0", "ruff_source_file", @@ -2929,7 +2929,7 @@ dependencies = [ [[package]] name = "ruff_source_file" version = "0.0.0" -source = "git+https://github.com/astral-sh/ruff.git?rev=e4c7f357777a2fdd34dbe6a98b1b7d3e7488f675#e4c7f357777a2fdd34dbe6a98b1b7d3e7488f675" +source = "git+https://github.com/astral-sh/ruff.git?rev=c2a8815842f9dc5d24ec19385eae0f1a7188b0d9#c2a8815842f9dc5d24ec19385eae0f1a7188b0d9" dependencies = [ "memchr", "ruff_text_size", @@ -2938,7 +2938,7 @@ dependencies = [ [[package]] name = "ruff_text_size" version = "0.0.0" -source = "git+https://github.com/astral-sh/ruff.git?rev=e4c7f357777a2fdd34dbe6a98b1b7d3e7488f675#e4c7f357777a2fdd34dbe6a98b1b7d3e7488f675" +source = "git+https://github.com/astral-sh/ruff.git?rev=c2a8815842f9dc5d24ec19385eae0f1a7188b0d9#c2a8815842f9dc5d24ec19385eae0f1a7188b0d9" dependencies = [ "get-size2", ] diff --git a/Cargo.toml b/Cargo.toml index c450d430c6..0fa3b05561 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -156,12 +156,12 @@ rustpython-sre_engine = { path = "crates/sre_engine", version = "0.5.0" } rustpython-wtf8 = { path = "crates/wtf8", version = "0.5.0" } rustpython-doc = { path = "crates/doc", version = "0.5.0" } -# Ruff tag 0.15.6 is based on commit e4c7f357777a2fdd34dbe6a98b1b7d3e7488f675 +# Ruff tag 0.15.8 is based on commit c2a8815842f9dc5d24ec19385eae0f1a7188b0d9 # at the time of this capture. We use the commit hash to ensure reproducible builds. -ruff_python_parser = { git = "https://github.com/astral-sh/ruff.git", rev = "e4c7f357777a2fdd34dbe6a98b1b7d3e7488f675" } -ruff_python_ast = { git = "https://github.com/astral-sh/ruff.git", rev = "e4c7f357777a2fdd34dbe6a98b1b7d3e7488f675" } -ruff_text_size = { git = "https://github.com/astral-sh/ruff.git", rev = "e4c7f357777a2fdd34dbe6a98b1b7d3e7488f675" } -ruff_source_file = { git = "https://github.com/astral-sh/ruff.git", rev = "e4c7f357777a2fdd34dbe6a98b1b7d3e7488f675" } +ruff_python_parser = { git = "https://github.com/astral-sh/ruff.git", rev = "c2a8815842f9dc5d24ec19385eae0f1a7188b0d9" } +ruff_python_ast = { git = "https://github.com/astral-sh/ruff.git", rev = "c2a8815842f9dc5d24ec19385eae0f1a7188b0d9" } +ruff_text_size = { git = "https://github.com/astral-sh/ruff.git", rev = "c2a8815842f9dc5d24ec19385eae0f1a7188b0d9" } +ruff_source_file = { git = "https://github.com/astral-sh/ruff.git", rev = "c2a8815842f9dc5d24ec19385eae0f1a7188b0d9" } phf = { version = "0.13.1", default-features = false, features = ["macros"]} ahash = "0.8.12"