[package]
edition = "2021"
name = "postrust-graphql"
version = "0.4.0"
authors = ["Bhanu Pratap Chaudhary"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GraphQL API and realtime subscriptions generated from a PostgreSQL schema"
homepage = "https://postrust.org/"
readme = "README.md"
keywords = [
"graphql",
"postgres",
"subscriptions",
"api",
"realtime",
]
license = "MIT"
repository = "https://github.com/postrust/postrust"
[lib]
name = "postrust_graphql"
path = "src/lib.rs"
[[test]]
name = "graphql_integration"
path = "tests/graphql_integration.rs"
[[test]]
name = "subscription_integration"
path = "tests/subscription_integration.rs"
[dependencies.async-graphql]
version = "7"
features = [
"chrono",
"uuid",
"bigdecimal",
"dynamic-schema",
]
[dependencies.async-graphql-axum]
version = "7"
[dependencies.axum]
version = "0.8"
features = ["macros"]
[dependencies.base64]
version = "0.22"
[dependencies.bytes]
version = "1.9"
features = ["serde"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.futures]
version = "0.3"
[dependencies.indexmap]
version = "2.7"
features = ["serde"]
[dependencies.postrust-auth]
version = "0.4.0"
[dependencies.postrust-core]
version = "0.4.0"
[dependencies.postrust-sql]
version = "0.4.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
features = ["arbitrary_precision"]
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"postgres",
"json",
"chrono",
"uuid",
"bigdecimal",
]
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.43"
features = ["full"]
[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.pretty_assertions]
version = "1.4"
[dev-dependencies.tokio]
version = "1.43"
features = [
"full",
"test-util",
"macros",
]