mirror of
https://github.com/graphql-hive/console
synced 2026-05-01 11:27:17 +00:00
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[package]
|
|
name = "hive-console-sdk"
|
|
repository = "https://github.com/graphql-hive/console/"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
publish = true
|
|
version = "0.3.0"
|
|
description = "Rust SDK for Hive Console"
|
|
|
|
[lib]
|
|
name = "hive_console_sdk"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.77"
|
|
axum-core = "0.5"
|
|
thiserror = "2.0.11"
|
|
reqwest = { version = "0.12.24", default-features = false, features = [
|
|
"rustls-tls",
|
|
"blocking",
|
|
] }
|
|
reqwest-retry = "0.8.0"
|
|
reqwest-middleware = { version = "0.4.2", features = ["json"]}
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
serde = "1"
|
|
tokio = { version = "1.36.0", features = ["full"] }
|
|
graphql-tools = "0.4.0"
|
|
graphql-parser = "0.4.1"
|
|
md5 = "0.7.0"
|
|
serde_json = "1"
|
|
moka = { version = "0.12.10", features = ["future", "sync"] }
|
|
sha2 = { version = "0.10.8", features = ["std"] }
|
|
tokio-util = "0.7.16"
|
|
regex-automata = "0.4.10"
|
|
once_cell = "1.21.3"
|
|
retry-policies = "0.5.0"
|
|
recloser = "1.3.1"
|
|
futures-util = "0.3.31"
|
|
typify = "0.5.0"
|
|
regress = "0.10.5"
|
|
lazy_static = "1.5.0"
|
|
async-dropper-simple = { version = "0.2.6", features = ["tokio", "no-default-bound"] }
|
|
|
|
[dev-dependencies]
|
|
mockito = "1.7.0"
|