raw
1[package]
2name = "bile"
3version = "0.1.0"
4authors = [
5 "alex wennerberg <[email protected]>",
6 "Jay Jackson <[email protected]>",
7 "wayver <[email protected]>",
8]
9edition = "2024"
10license = "AGPL-3.0-or-later"
11
12[dependencies]
13ansi-to-html = "=0.2.2"
14anyhow = "=1.0.101"
15askama = "=0.15.4"
16axum = { version = "=0.8.8", features = ["tracing"] }
17axum-response-cache = "=0.4.0"
18clap = { version = "=4.5.59", features = ["derive", "string"] }
19comrak = { version = "=0.50.0", default-features = false }
20figment = { version = "=0.10.19", default-features = false, features = ["env", "toml"] }
21git2 = { version = "=0.20.4", default-features = false }
22
23
24
25
26http = "=1.4.0"
27jiff = "=0.2.20"
28mimalloc = "=0.1.48"
29mime = "=0.3.17"
30num-conv = "=0.2.0"
31serde = { version = "=1.0.228", features = ["derive"] }
32syntect = { version = "=5.3.0", default-features = false, features = ["default-fancy"] }
33thiserror = "=2.0.18"
34tokio = { version = "=1.49.0", features = ["macros", "rt-multi-thread", "signal", "fs"] }
35tower = "=0.5.3"
36tower-helmet = "=0.3.0"
37tower-http = { version = "=0.6.8", features = ["timeout", "trace"] }
38tracing = "=0.1.44"
39tracing-error = "=0.2.1"
40tracing-subscriber = { version = "=0.3.22", features = ["env-filter"] }
41two-face = { version = "=0.5.1", default-features = false, features = ["syntect-fancy"] }
42
43[profile.release]
44codegen-units = 1
45lto = true
46