This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
graphql_query_builder/Cargo.toml

20 lines
527 B
TOML

[package]
name = "graphql_query_builder"
authors = ["DrakeTDL"]
version = "0.2.0"
edition = "2021"
description = "A GraphQL query builder."
documentation = "https://docs.rs/graphql_query_builder"
repository = "https://git.disroot.org/everyone/graphql_query_builder"
license = "MIT"
keywords= ["graphql", "gql", "builder"]
exclude = [".vscode", ".gitignore"]
[lib]
name = "graphql_query_builder"
path = "src/lib.rs"
crate-type = ["lib"]
[dependencies]
strum = { version = "0.25", features = ["derive"] }
strum_macros = "0.25"