aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: de00d117e0465b66e6fd3f2616ffb608e3a6b7b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "macroblog"
version = "0.1.0"
edition = "2021"

[dependencies]
sailfish = "0.4.0"
hyper = { version = "0.14", features = ["full"] }
tokio = { version = "1", features = ["full"] }
regex = "1.5"
rust-embed="6.4.0"

[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
panic = 'abort'
strip = true

[lib]
name="router"
path="src/router.rs"