-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (45 loc) · 1.77 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "router"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "router"
path = "src/main.rs"
[dependencies]
anyhow = "1"
apollo-router = { git = "ssh://[email protected]/TheHackerApp/apollo-router.git", branch = "main" }
async-compression = { version = "0.4", features = ["tokio", "brotli", "gzip", "deflate"] }
async-trait = "0.1"
context = { version = "0.5", features = ["headers"], registry = "wafflehacks" }
futures = "0.3"
graphql-hive-router = { git = "https://github.com/kamilkisiela/graphql-hive", branch = "main", version = "0.0.1" }
headers = "0.3"
http = "0.2"
hyper = { version = "0.14", features = ["client", "http1", "http2"] }
hyper-rustls = { version = "0.24", features = ["http1", "http2"] }
multimap = "0.9"
opentelemetry-http = "0.9"
opentelemetry_api = "0.20.0"
pin-project-lite = "0.2"
reqwest = { version = "0.11.24", default-features = false, features = ["json", "rustls-tls"] }
rustls = "0.21"
schemars = { version = "0.8", features = ["url"] }
serde = "1"
serde_json = "1"
sha2 = "0.10.8"
tokio = { version = "1", default-features = false, features = ["io-util"] }
tokio-stream = "0.1.14"
tower = { version = "0.4", default-features = false }
tower-http = { version = "0.4", features = ["compression-br", "compression-deflate", "compression-gzip", "decompression-br", "decompression-deflate", "decompression-gzip"] }
tracing = "0.1"
tracing-opentelemetry = "0.21"
trust-dns-resolver = "0.23.2"
url = { version = "2.5", features = ["serde"] }
[dev-dependencies]
serde_json = "1"
tokio = { version = "1", features = ["macros"] }
[profile.release]
panic = "abort"
[patch.crates-io]
apollo-router = { git = "ssh://[email protected]/TheHackerApp/apollo-router.git", branch = "main" }