[package] name = "mapp" version = "0.1.0" edition = "2021" authors = ["Developer "] description = "基于GraphQL的现代地图应用服务器" [dependencies] async-graphql = { version = "7.0.17", features = ["chrono", "uuid"] } async-graphql-axum = "7.0.17" axum = { version = "0.8.4", features = ["ws", "macros"] } chrono = { version = "0.4", features = ["serde"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" sqlx = { version = "0.8", features = [ # "runtime-tokio-rustls", "postgres", "chrono", "uuid", "migrate", ] } tokio = { version = "1.0", features = ["full"] } tower-http = { version = "0.5", features = ["cors"] } tracing = "0.1" tracing-subscriber = "0.3" jsonwebtoken = "9.0" argon2 = "0.5" dotenvy = "0.15" uuid = { version = "1.0", features = ["v4", "serde"] } futures-util = "0.3" tower = "0.4" async-stream = "0.3" axum-jwt-auth = "0.5.1" sea-query = "0.32.6" sea-query-binder = {version = "0.7.0",features = [ "sqlx-postgres", "with-chrono", "with-json", "with-rust_decimal", "with-bigdecimal", "with-uuid", "with-time", "with-ipnetwork", "with-mac_address", "runtime-async-std-native-tls", ]} axum-reverse-proxy = "1.0.3" rustls = { version = "0.23", features = ["aws-lc-rs"] } clap = { version = "4.0", features = ["derive"] } rdkafka = "0.38.0"