-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
30 lines (26 loc) · 911 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
[package]
name = "graphqxl"
version = "0.40.2"
edition = "2021"
description = "GraphQXL is an extension of the GraphQL language with some additional syntax that allows creating scalable server-side schemas"
categories = ["language", "compilers"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/gabotechs/graphqxl"
keywords = ["graphql", "schemas", "server", "api", "language"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"graphqxl_parser",
"graphqxl_synthesizer",
"graphqxl_transpiler",
]
[dependencies]
clap = { version = "4.0.22", features = ["derive"] }
anyhow = "1.0.63"
apollo-compiler = "0.11.3"
graphqxl_parser = { path = "graphqxl_parser" }
graphqxl_transpiler = { path = "graphqxl_transpiler" }
graphqxl_synthesizer = { path = "graphqxl_synthesizer" }
[dev-dependencies]
regex = "1.7.0"