aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: f01156a3ce668072fffebee49adaf7c273c914ce (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
32
33
34
[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"
pulldown-cmark = "0.9.1"

[dev-dependencies]
cargo-watch = "8.1.1"

[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"