21 lines
560 B
TOML
21 lines
560 B
TOML
[package]
|
|
name = "graphql-schema"
|
|
edition = "2021"
|
|
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
clap.workspace = true
|
|
dotenv.workspace = true
|
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
uuid = { version = "1.7.0", features = ["v4"] }
|
|
graphql_client = { version = "0.14.0" }
|
|
reqwest = { version = "0.12.10", features = ["json"] }
|
|
cynic-introspection = "3.9.1"
|
|
cynic = { version = "3.9.1", features = ["http-reqwest", "reqwest", "serde_json"] }
|