|
1 | 1 | [package] |
2 | | -name = "graphql_client" |
3 | | -version = "0.9.0" |
4 | 2 | authors = ["Tom Houlé <tom@tomhoule.com>"] |
5 | | -description = "Typed GraphQL requests and responses" |
6 | | -repository = "https://github.com/graphql-rust/graphql-client" |
7 | | -license = "Apache-2.0 OR MIT" |
8 | | -keywords = ["graphql", "api", "web", "webassembly", "wasm"] |
9 | 3 | categories = ["network-programming", "web-programming", "wasm"] |
| 4 | +description = "Typed GraphQL requests and responses" |
10 | 5 | edition = "2018" |
| 6 | +keywords = ["graphql", "api", "web", "webassembly", "wasm"] |
| 7 | +license = "Apache-2.0 OR MIT" |
| 8 | +name = "graphql_client" |
| 9 | +repository = "https://github.com/graphql-rust/graphql-client" |
| 10 | +version = "0.9.0" |
11 | 11 |
|
12 | 12 | [dependencies] |
| 13 | +anyhow = {version = "1.0", optional = true} |
13 | 14 | doc-comment = "^0.3" |
14 | | -anyhow = { version = "1.0", optional = true } |
15 | | -thiserror = { version = "1.0", optional = true } |
16 | | -graphql_query_derive = { path = "../graphql_query_derive", version = "0.9.0" } |
| 15 | +graphql_query_derive = {path = "../graphql_query_derive", version = "0.9.0"} |
| 16 | +reqwest = {version = "0.10.7", optional = true} |
| 17 | +serde = {version = "^1.0.78", features = ["derive"]} |
17 | 18 | serde_json = "1.0" |
18 | | -serde = { version = "^1.0.78", features = ["derive"] } |
19 | | -reqwest = { version = "0.10.4", optional = true } |
| 19 | +thiserror = {version = "1.0", optional = true} |
20 | 20 |
|
21 | | -[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] |
22 | | -reqwest = "^0.9" |
| 21 | +# [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] |
| 22 | +# reqwest = "^0.9" |
23 | 23 |
|
24 | 24 | [features] |
25 | 25 | web = ["reqwest"] |
0 commit comments