[package] name = "server" version = "1.4.0" edition = "2021" [dependencies] axum = { version = "0.8", features = ["ws", "multipart", "macros"] } axum-extra = { version = "0.10", features = ["cookie", "cookie-private", "cookie-signed"] } tokio = { version = "1", features = ["full", "macros", "rt-multi-thread"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } sqlx = { version = "0.8", features = ["postgres", "sqlite", "any", "runtime-tokio-rustls", "chrono", "uuid"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" chrono = { version = "0.4", features = ["serde"] } uuid = { version = "1", features = ["v4", "serde"] } tower-http = { version = "0.6", features = ["fs", "trace", "cors"] } tower = "0.5" argon2 = "0.5" futures-util = "0.3" ecow = "0.2" typst = { version = "0.14.2", path = "../typst/crates/typst" } typst-kit = { path = "../typst/crates/typst-kit", features = ["system-downloader", "system-packages", "embedded-fonts"] } typst-pdf = { path = "../typst/crates/typst-pdf" } typst-render = { path = "../typst/crates/typst-render" } typst-svg = { path = "../typst/crates/typst-svg" } typst-layout = { path = "../typst/crates/typst-layout" } yrs = "0.18.8" yrs-axum = "0.8" typst-assets = { version = "0.14.2", features = ["fonts"] } tokio-stream = "0.1.18" tempfile = "3.27.0" sha2 = "0.10" base64 = "0.22"