-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (52 loc) · 1.43 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "AxumHtmxAskamaPortofolioWebsite"
version = "0.1.0"
edition = "2021"
[dependencies]
#Backend
axum = { version = "0.8.0-alpha.1", features = ["macros","tokio"]}
axum-extra = { version = "0.10.0-alpha.1", features = ["cookie", "typed-header", "query"] }
axum-htmx = "0.6.0"
axum-server = { version = "0.7.1", features = ["tls-rustls"], default-features = false }
#templating
askama = { version = "0.12.1", features = ["with-axum"] }
askama_axum = "0.4.0"
askama-enum = "0.0.2"
askama-filters = "0.1.3"
#protocols
tokio = { version = "1.41.1", features = ["full"] }
tower = { version = "0.5.1", features = ["util"] }
tower-http = { version = "0.6.2", features = ["fs", "set-header", "compression-full", "decompression-full"] }
minify-html-onepass = "0.15.0"
#serde
serde = { version = "1.0.*", features = ["derive"] }
serde_json = "1.0.*"
#debuging
tracing-subscriber = "0.3.18"
tracing = "0.1.40"
log = "0.4.22"
#Esthetics
turf = "0.9.5"
text-to-ascii-art="0.1.10"
#toml
toml = "0.8.19"
#middleware
axum-prometheus = "0.7.0"
[dev-dependencies]
anyhow = "1.0.93"
httpc-test = "0.1.10"
[package.metadata.turf]
load_paths = ["scss/colorschemes"]
minify = true
[package.metadata.turf.class_names]
template = "<original_name><id>"
[package.metadata.turf.browser_targets]
chrome = [80, 1, 2]
firefox = 65
safari = [12, 3]
[profile.dev.package.askama_derive]
opt-level = 3
[profile.release]
lto = true
codegen-units = 1
panic = "abort"