cargo-features = ["codegen-backend"] [package] name = "sightline" version = "0.1.0" edition = "2024" [dependencies] anyhow = "1" tracing-subscriber = {version = "0.3", features = ["env-filter"]} tracing = "0.1" tokio = { version = "1", features = ["full", "parking_lot"] } axum = { version = "0.8", default-features = false, features = ["http1", "tokio", "tracing", "query"] } axum-htmx = "0.8" reqwest = { version = "0.12", default-features = false, features = ["charset", "http2", "rustls-tls", "json"] } tower-http = {version = "0.6", features = ["request-id", "trace", "compression-full"]} smol_str = { version = "0.3", features = ["serde"] } scc = "2" ahash = { version = "0.8", features = ["serde"] } fun-html = { git = "https://github.com/90-008/fun-html.git", features = ["axum"] } [target.'cfg(not(target_env = "msvc"))'.dependencies] tikv-jemallocator = "0.6" [profile.dev] debug = 0 strip = "debuginfo"