macroblog.rs @ de021a9d820a26359a57e67bc2733e1bf0e6d13b

ref: Add a bit more context to the project
 1diff --git a/README.md b/README.md
 2index d2a4851dcc7ef2757fc7d53f4dbab56708e565f0..59cf13b70688f24817edbebcbc7ad01a9706d9be 100644
 3--- a/README.md
 4+++ b/README.md
 5@@ -1,7 +1,9 @@
 6-# A single binary blob
 7+# A single binary blog
 8 
 9-After reading [this article](https://www.andreinc.net/2022/04/10/a-blog-that-is-a-single-executable-binary) by Andrei
10-Ciobanu it sparkled in me to do the same thing but with rust.
11+After reading [this
12+article](https://www.andreinc.net/2022/04/10/a-blog-that-is-a-single-executable-binary)
13+by Andrei Ciobanu it sparkled in me to do the same thing but with rust.
14+It is going to be a bit bigger than micro though ;)
15 
16 To achieve that I'll be using the following:
17 
18@@ -9,3 +11,10 @@ - Sailfish for templating
19 - hyper for http server
20 - rust-embed for adding the files into the binary.
21 
22+
23+## Goals
24+
25+* the whole blog should be a single binary
26+* keep everything in one request
27+* try to keep it under 50kB and a hard set at 100kB before any kind of
28+compression or minification.