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