[package] name = "sync_server" version.workspace = true edition.workspace = true authors.workspace = true license.workspace = true repository.workspace = true [dependencies] reconcile = { path = "../reconcile" } sync_lib = { path = "../sync_lib" } serde = { workspace = true } thiserror = { workspace = true } tokio = { version = "1.44.1", features = ["full"]} uuid = { version = "1.16.0", features = ["v4", "serde"] } log = { version = "0.4.22" } anyhow = { version = "1.0.97", features = ["backtrace"] } axum = { version = "0.7.4", features = ["ws", "macros", "tracing", "multipart"]} axum-extra = { version = "0.9.6", features = ["typed-header"] } aide-axum-typed-multipart = "0.13.0" axum_typed_multipart = "0.11.0" tower-http = { version = "0.6.1", features = ["cors", "trace", "limit", "timeout"] } tracing-subscriber = { version = "0.3.19", features = ["fmt", "env-filter"]} serde_yaml = "0.9.34" sqlx = { version = "0.8.3", features = ["sqlite", "runtime-tokio", "uuid", "chrono"] } chrono = { version = "0.4.40", features = ["serde"] } aide = { version = "0.13.4", features = ["axum", "axum-ws", "scalar", "axum-headers"] } schemars = { version = "0.8.21", features = ["chrono", "uuid1", "bytes"] } tracing = "0.1.41" rand = "0.8.5" sanitize-filename = "0.6.0" axum-jsonschema = { version = "0.8.0", features = ["aide"] } regex = "1.11.1" clap = { version = "4.5.32", features = ["derive"] } futures = "0.3.31" serde_json = "1.0.140" clap-verbosity-flag = "3.0.2" [lints] workspace = true