From d2a6ed7be690861d621fbbb94ded93f8fd695df8 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Mon, 27 Feb 2023 13:21:06 -0500 Subject: [PATCH] Upgrade RustPython (#3252) --- Cargo.lock | 8 ++++---- Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 320b092f19..6c31dae462 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2230,7 +2230,7 @@ dependencies = [ [[package]] name = "rustpython-ast" version = "0.2.0" -source = "git+https://github.com/RustPython/RustPython.git?rev=c4b67896662b16b5699a779c0e52aa0ca2587fec#c4b67896662b16b5699a779c0e52aa0ca2587fec" +source = "git+https://github.com/RustPython/RustPython.git?rev=351d464448607413dc12de6905f1165f8d45af54#351d464448607413dc12de6905f1165f8d45af54" dependencies = [ "num-bigint", "rustpython-compiler-core", @@ -2239,7 +2239,7 @@ dependencies = [ [[package]] name = "rustpython-common" version = "0.2.0" -source = "git+https://github.com/RustPython/RustPython.git?rev=c4b67896662b16b5699a779c0e52aa0ca2587fec#c4b67896662b16b5699a779c0e52aa0ca2587fec" +source = "git+https://github.com/RustPython/RustPython.git?rev=351d464448607413dc12de6905f1165f8d45af54#351d464448607413dc12de6905f1165f8d45af54" dependencies = [ "ascii", "bitflags", @@ -2264,7 +2264,7 @@ dependencies = [ [[package]] name = "rustpython-compiler-core" version = "0.2.0" -source = "git+https://github.com/RustPython/RustPython.git?rev=c4b67896662b16b5699a779c0e52aa0ca2587fec#c4b67896662b16b5699a779c0e52aa0ca2587fec" +source = "git+https://github.com/RustPython/RustPython.git?rev=351d464448607413dc12de6905f1165f8d45af54#351d464448607413dc12de6905f1165f8d45af54" dependencies = [ "bincode", "bitflags", @@ -2281,7 +2281,7 @@ dependencies = [ [[package]] name = "rustpython-parser" version = "0.2.0" -source = "git+https://github.com/RustPython/RustPython.git?rev=c4b67896662b16b5699a779c0e52aa0ca2587fec#c4b67896662b16b5699a779c0e52aa0ca2587fec" +source = "git+https://github.com/RustPython/RustPython.git?rev=351d464448607413dc12de6905f1165f8d45af54#351d464448607413dc12de6905f1165f8d45af54" dependencies = [ "ahash", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 1e83bf08dc..2151e199d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,8 +14,8 @@ libcst = { git = "https://github.com/charliermarsh/LibCST", rev = "80e4c1399f95e once_cell = { version = "1.16.0" } regex = { version = "1.6.0" } rustc-hash = { version = "1.1.0" } -rustpython-common = { git = "https://github.com/RustPython/RustPython.git", rev = "c4b67896662b16b5699a779c0e52aa0ca2587fec" } -rustpython-parser = { features = ["lalrpop"], git = "https://github.com/RustPython/RustPython.git", rev = "c4b67896662b16b5699a779c0e52aa0ca2587fec" } +rustpython-common = { git = "https://github.com/RustPython/RustPython.git", rev = "351d464448607413dc12de6905f1165f8d45af54" } +rustpython-parser = { features = ["lalrpop"], git = "https://github.com/RustPython/RustPython.git", rev = "351d464448607413dc12de6905f1165f8d45af54" } schemars = { version = "0.8.11" } serde = { version = "1.0.147", features = ["derive"] } serde_json = { version = "1.0.87" }