Skip to content

Commit 16c8677

Browse files
committed
Move the graphql_client crate to a subdirectory
1 parent b71c0e0 commit 16c8677

File tree

72 files changed

+21
-22
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+21
-22
lines changed

Cargo.toml

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,8 @@
1-
[package]
2-
name = "graphql_client"
3-
version = "0.5.0"
4-
authors = ["Tom Houlé <[email protected]>"]
5-
description = "Typed GraphQL requests and responses"
6-
repository = "https://github.com/tomhoule/graphql-client"
7-
license = "Apache-2.0 OR MIT"
8-
keywords = ["graphql", "api", "web", "webassembly", "wasm"]
9-
categories = ["network-programming", "web-programming", "wasm"]
10-
11-
[dependencies]
12-
failure = "0.1"
13-
graphql_query_derive = {path = "./graphql_query_derive", version = "0.5.0"}
14-
itertools = "0.7"
15-
serde = "^1.0.78"
16-
serde_derive = "1.0"
17-
serde_json = "1.0"
18-
191
[workspace]
202
members = [
21-
".",
22-
"examples/example_module",
23-
"examples/github",
3+
"graphql_client",
4+
"graphql_client/examples/example_module",
5+
"graphql_client/examples/github",
246
"graphql_query_derive",
257
"graphql_client_codegen",
268
"graphql_client_cli",

graphql_client/Cargo.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[package]
2+
name = "graphql_client"
3+
version = "0.5.0"
4+
authors = ["Tom Houlé <[email protected]>"]
5+
description = "Typed GraphQL requests and responses"
6+
repository = "https://github.com/tomhoule/graphql-client"
7+
license = "Apache-2.0 OR MIT"
8+
keywords = ["graphql", "api", "web", "webassembly", "wasm"]
9+
categories = ["network-programming", "web-programming", "wasm"]
10+
11+
[dependencies]
12+
failure = "0.1"
13+
graphql_query_derive = {path = "../graphql_query_derive", version = "0.5.0"}
14+
itertools = "0.7"
15+
serde = "^1.0.78"
16+
serde_derive = "1.0"
17+
serde_json = "1.0"

0 commit comments

Comments
 (0)