macroblog.rs @ 7c7967ebc8f7a1f67965f2300dde39fab0adc340

 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[profile.release]
16opt-level = 'z'
17lto = true
18codegen-units = 1
19panic = 'abort'
20strip = true
21
22[lib]
23name="macroblog"
24path="src/lib.rs"
25
26[[bin]]
27name = "hyper"
28
29
30[[bin]]
31name = "actix"