forked from arthurkhlghatyan/gql-client-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (25 loc) · 907 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 = "gql_client"
version = "1.0.8"
authors = ["Arthur Khlghatyan <[email protected]>"]
edition = "2018"
description = "Minimal GraphQL client for Rust"
readme = "README.md"
homepage = "https://github.com/arthurkhlghatyan/gql-client-rs"
repository = "https://github.com/arthurkhlghatyan/gql-client-rs"
license = "MIT"
keywords = ["graphql", "client", "async", "web", "http"]
categories = ["web-programming", "asynchronous"]
[badges]
maintenance = { status = "actively-developed" }
[features]
default = ["native-tls"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.11", features = ["json"], default_features = false }
log = "0.4"
[dev-dependencies]
tokio = { version = "1", features = ["full"] }