20 lines
527 B
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"
|