-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (32 loc) · 905 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
35
36
37
[package]
authors = ["Davy Duperron <[email protected]>"]
categories = ["command-line-utilities", "development-tools"]
description = "A CLI tool to visualize GraphQL schemas and to output a graph data structure as a graphviz .dot format"
edition = "2021"
exclude = [".github", "graph.svg", "rustfmt.toml"]
keywords = ["cli", "graph", "graphql", "graphviz", "terminal"]
license = "MIT"
name = "craftql"
readme = "README.md"
repository = "https://github.com/yamafaktory/craftql"
rust-version = "1.56"
version = "0.2.20"
[lib]
name = "craftql"
path = "src/lib.rs"
[[bin]]
name = "craftql"
path = "src/bin.rs"
[dependencies]
anyhow = "1.0.71"
clap = { version = "4.2.7", features = ["derive"] }
graphql-parser = "0.4.0"
petgraph = "0.6.3"
[dependencies.async-std]
version = "1.12.0"
features = ["attributes", "unstable"]
[profile.release]
codegen-units = 1
lto = true
opt-level = 'z'
panic = 'abort'