[package]
edition = "2024"
rust-version = "1.85.0"
name = "gwp"
version = "0.2.1"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A standalone, pure Rust gRPC wire protocol for GQL (ISO/IEC 39075)"
readme = "README.md"
keywords = [
"gql",
"graph",
"grpc",
"wire-protocol",
"database",
]
categories = [
"database",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/GrafeoDB/gql-wire-protocol"
[features]
default = []
tls = ["tonic/tls-ring"]
[lib]
name = "gwp"
path = "src/lib.rs"
[[bin]]
name = "gwp-test-server"
path = "src/bin/gwp-test-server.rs"
[[test]]
name = "catalog_service"
path = "tests/catalog_service.rs"
[[test]]
name = "client_integration"
path = "tests/client_integration.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[dependencies.prost]
version = "0.14.3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"signal",
]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tokio-util]
version = "0.7"
[dependencies.tonic]
version = "0.14"
[dependencies.tonic-health]
version = "0.14"
[dependencies.tonic-prost]
version = "0.14"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"test-util",
]
[build-dependencies.prost-build]
version = "0.14.3"
[build-dependencies.tonic-prost-build]
version = "0.14.4"
[lints.clippy]
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[profile.release]
lto = true