macroblog.rs @ 17d160e5f9cdd4e46b0ab08cf56eaedd8943d885

 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"
11rust-embed = "6.4.0"
12chrono = "0.4"
13actix-web = "4"
14
15[dev-dependencies]
16cargo-watch = "8.1.1"
17
18[profile.release]
19opt-level = 'z'
20lto = true
21codegen-units = 1
22panic = 'abort'
23strip = true
24
25[lib]
26name="macroblog"
27path="src/lib.rs"
28
29[[bin]]
30name = "hyper"
31
32[[bin]]
33name = "actix"