infrahub 0.1.0

small graphql client for infrahub
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "infrahub"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "small graphql client for infrahub"
homepage = "https://github.com/cyberwitchery/infrahub.rs"
documentation = "https://docs.rs/infrahub"
readme = "README.md"
license = "MIT"
repository = "https://github.com/cyberwitchery/infrahub.rs"

[features]
default = []

[lib]
name = "infrahub"
path = "src/lib.rs"

[[bin]]
name = "infrahub-codegen"
path = "src/bin/infrahub-codegen.rs"

[[example]]
name = "simple_query"
path = "examples/simple_query.rs"

[[example]]
name = "typed_query"
path = "examples/typed_query.rs"

[[test]]
name = "smoke_query"
path = "tests/smoke_query.rs"

[dependencies.graphql-parser]
version = "0.4"

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "blocking",
]

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
]

[dependencies.url]
version = "2"

[dev-dependencies]