[package] name = "companytool-backend" version = "0.1.0" edition.workspace = true license.workspace = true [dependencies] anyhow = "1" argon2 = "0.5" axum = { version = "0.7", features = ["ws"] } base64 = "0.22" chrono = { version = "0.4", features = ["serde"] } companytool-shared-protocol = { path = "../shared-protocol" } dotenvy = "0.15" futures-util = "0.3" rand_core = { version = "0.6", features = ["getrandom"] } serde = { version = "1", features = ["derive"] } serde_json = "1" sha2 = "0.10" sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "uuid", "chrono"] } tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal", "sync"] } tower-http = { version = "0.6", features = ["cors", "trace"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } uuid = { version = "1", features = ["v4"] }