macroblog.rs @ 6a31a30b98f7febe9ac0db74211ef074aefc7ad3

 1# A single binary blog
 2
 3After reading [this
 4article](https://www.andreinc.net/2022/04/10/a-blog-that-is-a-single-executable-binary)
 5by Andrei Ciobanu it sparkled in me to do the same thing but with rust.
 6It is going to be a bit bigger than micro ;)
 7
 8To achieve that I'll be using the following:
 9
10- Sailfish for templating
11- hyper for http server
12- rust-embed for adding the files into the binary.
13
14
15## Goals
16
17* the whole blog should be a single binary
18* keep everything in one request
19* try to keep it under 50kB and a hard set at 100kB before any kind of
20compression or minification.