From abc75866623808fa3510d65d0ffeecde3cda5799 Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Wed, 27 Jul 2022 05:14:34 +0900 Subject: [PATCH] bump up sre-engine to 0.2.0 --- Cargo.lock | 5 +++-- vm/Cargo.toml | 3 +-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ecca468c9..e0094cecb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2066,8 +2066,9 @@ dependencies = [ [[package]] name = "sre-engine" -version = "0.1.2" -source = "git+https://github.com/qingshi163/sre-engine?branch=refactor#82675ae5bd541139163c33312f84e421dddcdd1e" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55e283f0ec6488739d0b972e3c17b70a8698b33c298a169430387f871af51a03" dependencies = [ "bitflags", "num_enum", diff --git a/vm/Cargo.toml b/vm/Cargo.toml index 5fd905c8a..f1771238b 100644 --- a/vm/Cargo.toml +++ b/vm/Cargo.toml @@ -72,8 +72,7 @@ memoffset = "0.6.5" optional = "0.5.0" # RustPython crates implementing functionality based on CPython -# sre-engine = "0.1.2" -sre-engine = { git = "https://github.com/qingshi163/sre-engine", branch = "refactor" } +sre-engine = "0.2.0" # to work on sre-engine locally # sre-engine = { path = "../../sre-engine" }