-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 1.27 KB
/
Copy pathCargo.toml
File metadata and controls
33 lines (31 loc) · 1.27 KB
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
[package]
name = "hartem-tkawen-rs"
version = "0.10.0"
edition = "2021"
authors = ["Hartem Yaakoub <DIRECTION@takawen.dz>"]
description = "Personal site of Hartem Yaakoub — engineer & founder of TKAWEN. Server-side rendered in Rust (Axum + Maud)."
license = "AGPL-3.0-or-later"
repository = "https://github.com/hartemyaakoub/hartem-tkawen-rs"
readme = "README.md"
keywords = ["axum", "maud", "personal-site", "ssr", "rust"]
categories = ["web-programming::http-server"]
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"
[dependencies]
axum = { version = "0.7", default-features = false, features = ["http1", "http2", "tokio", "macros", "query"] }
tokio = { version = "1", features = ["rt-multi-thread", "net", "macros", "signal", "time", "fs"] }
maud = { version = "0.26", features = ["axum"] }
tower = { version = "0.5", default-features = false }
tower-http = { version = "0.6", features = ["compression-gzip", "compression-br", "set-header", "trace"] }
hyper = { version = "1", features = ["http1", "http2"] }
rust-embed = { version = "8", features = ["compression"] }
mime_guess = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
sha2 = "0.10"