console/packages/libraries/router/Cargo.toml
TheGuildBot 36dd9d3bff
Upcoming Release Changes (#7470)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-01-12 11:52:17 +01:00

45 lines
1.1 KiB
TOML

[package]
name = "hive-apollo-router-plugin"
authors = ["Kamil Kisiela <kamil.kisiela@gmail.com>"]
repository = "https://github.com/graphql-hive/console/"
edition = "2021"
license = "MIT"
publish = true
version = "3.0.0"
description = "Apollo-Router Plugin for Hive"
[[bin]]
name = "router"
path = "src/main.rs"
[lib]
name = "hive_apollo_router_plugin"
path = "src/lib.rs"
[dependencies]
apollo-router = { version = "^2.0.0" }
axum-core = "0.5"
hive-console-sdk = { path = "../sdk-rs", version = "0" }
sha2 = { version = "0.10.8", features = ["std"] }
anyhow = "1"
tracing = "0.1"
bytes = "1.11.0"
async-trait = "0.1.77"
futures = { version = "0.3.30", features = ["thread-pool"] }
schemars = { version = "1.0.4", features = ["url2"] }
serde = "1"
serde_json = "1"
tokio = { version = "1.36.0", features = ["full"] }
tower = { version = "0.5", features = ["full"] }
http = "1"
http-body-util = "0.1"
graphql-parser = "0.4.1"
rand = "0.9.0"
tokio-util = "0.7.16"
[dev-dependencies]
httpmock = "0.7.0"
jsonschema = { version = "0.29.0", default-features = false, features = [
"resolve-file",
] }
lazy_static = "1.5.0"