blob: fa58787b8b46c80d042a677609e2fe3ef79978bd (
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
|
[package]
name = "corgi"
version = "0.1.0"
edition = "2024"
[profile.release]
#strip = true
#opt-level = "z"
#lto = true
#codegen-units = 1
# 1538792 none of the above flags
# 829896 the above flags reduced binary size by around 700K :)
[dependencies]
http-body-util = "0.1.3"
hyper-util = { version = "0.1.10", features = ["tokio"] }
regex-lite = "0.1.6"
[dependencies.confindent]
version = "2.2.1"
git = "https://github.com/gennyble/confindent"
branch = "v2"
[dependencies.tokio]
version = "1.44.0"
features = ["rt", "rt-multi-thread", "io-std", "io-util", "net", "process"]
[dependencies.hyper]
version = "1.6.0"
default-features = false
features = ["server", "http1"]
|