mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
33 lines
No EOL
1.2 KiB
TOML
33 lines
No EOL
1.2 KiB
TOML
[package]
|
|
name = "graphql-hive-router"
|
|
version = "0.0.1"
|
|
authors = ["Kamil Kisiela <kamil.kisiela@gmail.com>"]
|
|
repository = "https://github.com/kamilkisiela/graphql-hive/"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "router"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
apollo-router = { version = "^1.13.0" }
|
|
reqwest = { version = "0.11.11", default-features = false, features = ["rustls-tls", "blocking", "json"] }
|
|
sha2 = { version = "0.10.2", features = ["std"] }
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
async-trait = "0.1.67"
|
|
futures = { version = "0.3.27", features = ["thread-pool"] }
|
|
schemars = { version = "0.8", features = ["url"] }
|
|
serde = "1"
|
|
serde_json = "1"
|
|
tokio = { version = "1.27.0", features = ["full"] }
|
|
tower = { version = "0.4.13", features = ["full"] }
|
|
http = "0.2"
|
|
# Until they release https://github.com/graphql-rust/graphql-parser/commit/0d93ac9310c2894a029d0eb912c3463875a535f9
|
|
graphql-parser = { git = "https://github.com/graphql-rust/graphql-parser.git", rev = "8d76425d83c40670570cc325f57c730262f07456" }
|
|
graphql-tools = { git = "https://github.com/dotansimha/graphql-tools-rs.git", rev = "59d083108c63fb24a525f987ac4299d108c6e2d1" } # branch = "kamil-minifier-without-fork"
|
|
lru = "0.10.0"
|
|
md5 = "0.7.0"
|
|
rand = "0.8.5" |