1cargo-features = ["codegen-backend"]
2
3[package]
4name = "sightline"
5version = "0.1.0"
6edition = "2024"
7
8[dependencies]
9anyhow = "1"
10tracing-subscriber = {version = "0.3", features = ["env-filter"]}
11tracing = "0.1"
12tokio = { version = "1", features = ["full", "parking_lot"] }
13axum = { version = "0.8", default-features = false, features = ["http1", "tokio", "tracing", "query"] }
14axum-htmx = "0.8"
15reqwest = { version = "0.12", default-features = false, features = ["charset", "http2", "rustls-tls", "json"] }
16tower-http = {version = "0.6", features = ["request-id", "trace", "compression-full"]}
17smol_str = { version = "0.3", features = ["serde"] }
18scc = "2"
19ahash = { version = "0.8", features = ["serde"] }
20fun-html = { git = "https://github.com/90-008/fun-html.git", features = ["axum"] }
21
22[target.'cfg(not(target_env = "msvc"))'.dependencies]
23tikv-jemallocator = "0.6"
24
25[profile.dev]
26debug = 0
27strip = "debuginfo"