From 4754b420ced2503eb2641d6ddf678736e1aa7369 Mon Sep 17 00:00:00 2001 From: Max Audron Date: Sun, 17 Oct 2021 17:07:09 +0200 Subject: replace sedregex crate This replaces the sedregex crate with our own implementation for multiple reasons: 1. We required to access the parsed regex, this required a patch to the sedregex crate which did not get merged due to an inactive dev, blocking us from publishing on crates.Io 2. We wanted to highlight the changes done in bold 3. We want to add execution of multiple chained sed commands in the future which would require more modification --- Cargo.lock | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'Cargo.lock') diff --git a/Cargo.lock b/Cargo.lock index 70e4c42..cd25dc2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -138,6 +138,7 @@ dependencies = [ "anyhow", "async-trait", "base64", + "bitflags", "catinator_macros", "figment", "futures", @@ -148,9 +149,9 @@ dependencies = [ "regex", "reqwest", "sasl", - "sedregex", "serde", "serde_json", + "thiserror", "tokio", "toml", "tracing", @@ -1172,14 +1173,6 @@ dependencies = [ "untrusted", ] -[[package]] -name = "sedregex" -version = "0.2.4" -source = "git+https://gitlab.com/audron/sedregex#2ac3be5f56f53122cd89a160bc2ff9f7387a9467" -dependencies = [ - "regex", -] - [[package]] name = "serde" version = "1.0.125" -- cgit v1.2.3