Skip to content

Commit b4f048d

Browse files
authored
Merge pull request #160 from panicbit/issue-118
Move the graphql_client crate to a subdirectory
2 parents 6fcd5e7 + ac4cfff commit b4f048d

File tree

73 files changed

+24
-25
lines changed

Some content is hidden

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

73 files changed

+24
-25
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ script:
1010
- if [ "$TRAVIS_RUST_VERSION" = "stable" ]; then (cargo fmt --all -- --check) fi
1111
- if [ "$TRAVIS_RUST_VERSION" = "stable" ]; then (cargo clippy) fi
1212
- cargo test --all
13-
- cargo build --manifest-path=./examples/github/Cargo.toml
13+
- cargo build --manifest-path=./graphql_client/examples/github/Cargo.toml
1414
- cargo build --manifest-path=./graphql_client_cli/Cargo.toml

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/graphql-rust/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/graphql-rust/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)