From a16e8a21bb83325f8e40c13ef2d052393e2f6489 Mon Sep 17 00:00:00 2001 From: "Gabriel A. Giovanini" Date: Sat, 7 May 2022 00:29:01 +0200 Subject: feat: Add early blog implementation It is just a really crappy implementation to get it running until a figure the pieces of the project out. --- Cargo.lock | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'Cargo.lock') diff --git a/Cargo.lock b/Cargo.lock index d51075f..9f33acf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,6 +2,15 @@ # It is not intended for manual editing. version = 3 +[[package]] +name = "aho-corasick" +version = "0.7.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" +dependencies = [ + "memchr", +] + [[package]] name = "autocfg" version = "1.1.0" @@ -242,6 +251,7 @@ name = "macroblog" version = "0.1.0" dependencies = [ "hyper", + "regex", "sailfish", "tokio", ] @@ -362,6 +372,23 @@ dependencies = [ "bitflags", ] +[[package]] +name = "regex" +version = "1.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.6.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" + [[package]] name = "ryu" version = "1.0.9" -- cgit v1.2.3