[package] name = "rtss_api" version = "0.1.0" edition = "2021" [dependencies] anyhow = { workspace = true } tokio = { workspace = true, features = ["macros", "rt-multi-thread"] } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } chrono = { version = "0.4.38", features = ["serde"] } axum = "0.7.5" axum-extra = { version = "0.9.3", features = ["typed-header"] } # jsonwebtoken = "9.3.0" tower-http = { version = "0.6.0", features = ["cors"] } async-graphql = { version = "7.0.7", features = ["chrono", "dataloader"] } async-graphql-axum = "7.0.6" base64 = "0.22.1" sysinfo = "0.31.3" reqwest = { version = "0.12.7", features = ["json"] } bevy_ecs = { workspace = true } rtss_log = { path = "../rtss_log" } rtss_sim_manage = { path = "../rtss_sim_manage" } rtss_trackside = { path = "../rtss_trackside" } rtss_db = { path = "../rtss_db" } rtss_dto = { path = "../rtss_dto" }