-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 1.02 KB
/
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
38
39
40
41
42
[package]
name = "docql"
version = "0.3.2"
authors = ["Bryan Burgers <[email protected]>"]
edition = "2018"
description = "Generate static HTML documentation for GraphQL APIs."
homepage = "https://github.com/bryanburgers/docql"
repository = "https://github.com/bryanburgers/docql"
readme = "README.md"
license = "MIT"
keywords = ["graphql"]
categories = ["command-line-utilities", "web-programming"]
default-run = "docql"
[dependencies]
async-trait = "0.1"
chrono = "0.4"
clap = "2.33"
futures = "0.3"
handlebars = "3"
pulldown-cmark = "0.7"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
url = "2"
# Only used for the binary
reqwest = { version = "0.10", default-features = false, features = ["rustls-tls", "json"], optional = true}
tokio = { version = "0.2", features = ["fs", "macros"], optional = true }
[features]
default = ["bin"]
bin = ["reqwest", "tokio"]
[[bin]]
name = "docql"
path = "src/bin/main.rs"
required-features = ["bin"]
[package.metadata.docs.rs]
features = []
no-default-features = true