[package] name = "appview" version = "0.1.0" edition = "2024" [dependencies] hydrant = { git = "https://tangled.org/ptr.pet/hydrant", features = ["backlinks"] } tokio = { version = "1.0", features = ["full"] } axum = { version = "0.8.8", features = ["macros"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } miette = { version = "7", features = ["fancy"] } jacquard-common = { version = "0.11", default-features = false, features = ["tracing", "std", "crypto"] } jacquard-api = { version = "0.11" } chrono = { version = "0.4.43", features = ["serde"] } serde_urlencoded = "0.7.1" data-encoding = "2.11.0" urlencoding = "2.1.3" fjall = { git = "https://github.com/90-008/fjall.git", version = "3.1.4", features = ["lz4", "zstd"] } base64 = "0.22.1" futures = "0.3.32" tower-http = { version = "0.6.8", features = ["cors", "trace"] }