1[package]
2name = "macroblog"
3version = "0.1.0"
4edition = "2021"
5
6[dependencies]
7sailfish = "0.4.0"
8hyper = { version = "0.14", features = ["full"] }
9tokio = { version = "1", features = ["full"] }
10regex = "1.5"
11
12[profile.release]
13opt-level = 'z'
14lto = true
15codegen-units = 1
16panic = 'abort'
17strip = true