From e964ec8f74b644d66ca166a7524adcc3a82709c9 Mon Sep 17 00:00:00 2001 From: "Gabriel A. Giovanini" Date: Sat, 14 May 2022 19:56:06 +0200 Subject: feat: Move code to blog - Move most logic of the blog to blog.rs, making it easier to test. - Now the file contains the creation date of the blog post to be parsed. - Add chrono to parse datetime, so later we can order by date. - Refactor gitlab pipeline, move `before_script` to a proper place. --- Cargo.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index de00d11..a241371 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,8 @@ sailfish = "0.4.0" hyper = { version = "0.14", features = ["full"] } tokio = { version = "1", features = ["full"] } regex = "1.5" -rust-embed="6.4.0" +rust-embed = "6.4.0" +chrono = "0.4" [profile.release] opt-level = 'z' @@ -18,5 +19,5 @@ panic = 'abort' strip = true [lib] -name="router" -path="src/router.rs" +name="macroblog" +path="src/lib.rs" -- cgit v1.2.3