-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (36 loc) · 826 Bytes
/
Cargo.toml
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
35
36
37
38
39
[package]
name = "tn3wrepo"
version = "0.1.0"
edition = "2021"
authors = ["TN3W <tn3w@protonmail.com>"]
description = "A personal project portfolio featuring Markdown rendering and syntax highlighting for all your coding endeavors."
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 3
panic = "abort"
strip = true
debug = 0
overflow-checks = false
incremental = false
[profile.release.package."*"]
codegen-units = 1
opt-level = 3
[dependencies]
actix-web = "4.5.1"
tera = "1.19.1"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
syntect = "5.2.0"
pulldown-cmark = "0.12.2"
ignore = "0.4.22"
chrono = "0.4.35"
humansize = "2.1.3"
walkdir = "2.5.0"
mime_guess = "2.0.4"
zip = "2.2.2"
anyhow = "1.0.80"
thiserror = "2.0.11"
html-escape = "0.2.13"
ammonia = "3.3.0"
lazy_static = "1.4.0"