forked from apollographql/apollo-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (32 loc) · 899 Bytes
/
Cargo.toml
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
[package]
name = "apollo-smith"
version = "0.12.0" # When bumping, also update README.md
edition = "2021"
authors = ["Benjamin Coenen <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/apollographql/apollo-rs"
description = "A GraphQL test case generator."
keywords = [
"graphql",
"fuzzer",
"graphql-tooling",
"apollographql",
"test-case-generator",
]
categories = [
"compilers",
"development-tools",
"parser-implementations",
"development-tools::testing",
"web-programming",
]
[dependencies]
apollo-compiler = { path = "../apollo-compiler", version = "=1.0.0-beta.22" }
apollo-parser = { path = "../apollo-parser", version = "0.8.0" }
arbitrary = { version = "1.3.0", features = ["derive"] }
indexmap = "2.0.0"
once_cell = "1.9.0"
thiserror = "1.0.37"
[dev-dependencies]
expect-test = "1.4"
rand = "0.8.5"