aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 886081f508afde49126f89ec2a9bfe11d94e5f7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[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"
chrono = "0.4"
actix-web = "4"

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

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

[[bin]]
name = "hyper"


[[bin]]
name = "actix"