[package] name = "oxspeak_server" version = "0.1.0" edition = "2024" [lib] name = "oxspeak_server_lib" crate-type = ["rlib"] [workspace] members = [".", "migration", "event_bus"] [dependencies] tokio = { version = "1.53.1", features = ["full"] } axum = { version = "0.8", features = ["ws"] } axum-extra = { version = "0.12.6", features = ["cookie"] } config = "0.15.25" sea-orm = { version = "2.0.0", features = ["sqlx-sqlite", "sqlx-postgres", "sqlx-mysql", "runtime-tokio", "with-chrono", "with-uuid", "with-json", "schema-sync"] } migration = { path = "migration" } event_bus = { path = "event_bus" } parking_lot = "0.12.5" serde = "1.0.229" serde_json = "1.0.151" toml = "1.1.3" uuid = { version = "1.24.0", features = ["v4", "v7", "fast-rng", "serde"] } tracing = "0.1.44" tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "time"] } thiserror = "2" utoipa = { version = "5", features = ["uuid", "chrono"] } utoipa-swagger-ui = { version = "9", features = ["axum"] } log = "0.4" bitflags = "2.13.1" argon2 = { version = "0.6.0-rc.8", features = ["password-hash"] } jsonwebtoken = { version = "11.0.0", features = ["aws_lc_rs"] } tower = { version = "0.5", features = ["util"] } tower-http = { version = "0.7.0", features = ["catch-panic", "cors", "trace"] } chrono = "0.4.45" validator = { version = "0.20.0", features = ["derive"] } async-trait = "0.1.91" anyhow = "1.0.104" futures-util = "0.3" form_urlencoded = "1.2.2" time = "0.3.54"