File: Cargo.toml

package info (click to toggle)
rust-graphql-parser 0.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 588 kB
  • sloc: makefile: 2
file content (67 lines) | stat: -rw-r--r-- 1,565 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# 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 = "2018"
name = "graphql-parser"
version = "0.4.1"
authors = ["Paul Colomiets <paul@colomiets.name>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
    A parser, AST and serializer for graphql query language and scheme
    definition language (sometimes called IDL).
"""
homepage = "https://github.com/graphql-rust/graphql-parser"
documentation = "https://docs.rs/graphql-parser"
readme = "README.md"
keywords = [
    "graphql",
    "parser",
]
categories = [
    "parser-implementations",
    "command-line-interface",
]
license = "MIT/Apache-2.0"

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

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

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

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

[[bench]]
name = "graphql"
path = "benches/graphql.rs"

[dependencies.combine]
version = "4.6.6"

[dependencies.thiserror]
version = "1.0.11"

[dev-dependencies.pretty_assertions]
version = "1"