1[package]
2name = "sightline"
3version = "0.1.0"
4edition = "2024"
5
6[dependencies]
7anyhow = "1"
8tracing-subscriber = {version = "0.3", features = ["env-filter"]}
9tracing = "0.1"
10tokio = { version = "1", features = ["full", "parking_lot"] }
11axum = { version = "0.8", default-features = false, features = ["http1", "tokio", "tracing", "query"] }
12axum-htmx = "0.8"
13reqwest = { version = "0.12", default-features = false, features = ["charset", "http2", "rustls-tls", "json"] }
14tower-http = {version = "0.6", features = ["request-id", "trace", "compression-full"]}
15smol_str = { version = "0.3", features = ["serde"] }
16scc = "2"
17ahash = { version = "0.8", features = ["serde"] }
18serde = { version = "1", features = ["derive"] }
19serde_json = "1"
20hypertext = { version = "0.12", features = ["axum", "htmx"] }
21
22[target.'cfg(not(target_env = "msvc"))'.dependencies]
23tikv-jemallocator = "0.6"