diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-05-07 00:29:01 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-05-07 00:29:01 +0200 |
commit | a16e8a21bb83325f8e40c13ef2d052393e2f6489 (patch) | |
tree | 9ce727b225308953e397a284d4f1fcd5cab75e63 /Cargo.lock | |
parent | e7c5dc01cf3bf382c82dd6984808bd3ca21d33a5 (diff) | |
download | macroblog.rs-a16e8a21bb83325f8e40c13ef2d052393e2f6489.tar.gz macroblog.rs-a16e8a21bb83325f8e40c13ef2d052393e2f6489.tar.bz2 macroblog.rs-a16e8a21bb83325f8e40c13ef2d052393e2f6489.zip |
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.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -3,6 +3,15 @@ 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" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -242,6 +251,7 @@ name = "macroblog" version = "0.1.0" dependencies = [ "hyper", + "regex", "sailfish", "tokio", ] @@ -363,6 +373,23 @@ dependencies = [ ] [[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" source = "registry+https://github.com/rust-lang/crates.io-index" |