-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
64 lines (49 loc) · 1.44 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
[package]
name = "AudrickConceptPortofolio"
version = "0.1.0"
edition = "2021"
[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]
[dependencies]
#Backend
axum = { version = "0.8.0-alpha.1", features = ["macros", "tokio"]}
axum-extra = { version = "0.10.0-alpha.1", features = ["cookie", "typed-header"] }
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"
#protocols
tokio = { version = "1.42", 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"
uuid = { version = "1.11.0", features = ["v4" ,"fast-rng"] }
uiua = { version = "0.14.0-dev.7", default-features = false, features = ["native_sys"]}
anyhow = "^1.0"
time = "0.3.37"
#serde
serde = { version = "1.0", features = ["derive"] }
#debuging
tracing-subscriber = "0.3.18"
tracing = "0.1.41"
#Esthetics
turf = "0.9.5"
text-to-ascii-art="0.1.10"
#toml
toml = "0.8.19"
#optimisation
[profile.dev.package.askama_derive]
opt-level = 3
[profile.release]
lto = true
codegen-units = 1
panic = "abort"