Skip to content

Commit 69a5d02

Browse files
committed
Use new repo location
1 parent b71c0e0 commit 69a5d02

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3838
lint and you use deprecated fields in your queries. The quick solution is to
3939
annotate the relevant queries with `depracated = "allow"` as shown above.
4040

41-
- The CLI now supports the `--authorization` flag to pass the contents of an `Authorization` header. Thanks to @h-michael for the [PR](https://github.com/tomhoule/graphql-client/pull/92)!
41+
- The CLI now supports the `--authorization` flag to pass the contents of an `Authorization` header. Thanks to @h-michael for the [PR](https://github.com/graphql-rust/graphql-client/pull/92)!
4242

4343
- Improved some codegen error messages, giving more context. Thanks @mathstuf!
4444

@@ -60,7 +60,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6060

6161
- Handle all Rust keywords as field names in codegen by appending `_` to the generated names, so a field called `type` in a GraphQL query will become a `type_` field in the generated struct. Thanks to @scrogson!
6262

63-
- [Some error message improvements](https://github.com/tomhoule/graphql-client/pull/100).
63+
- [Some error message improvements](https://github.com/graphql-rust/graphql-client/pull/100).
6464

6565
- The `operationName` field is now correctly set on request bodies.
6666

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "graphql_client"
33
version = "0.5.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Typed GraphQL requests and responses"
6-
repository = "https://github.com/tomhoule/graphql-client"
6+
repository = "https://github.com/graphql-rust/graphql-client"
77
license = "Apache-2.0 OR MIT"
88
keywords = ["graphql", "api", "web", "webassembly", "wasm"]
99
categories = ["network-programming", "web-programming", "wasm"]

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# graphql_client
22

3-
[![Build Status](https://travis-ci.org/tomhoule/graphql-client.svg?branch=master)](https://travis-ci.org/graphql-rust/graphql-client)
3+
[![Build Status](https://travis-ci.org/graphql-rust/graphql-client.svg?branch=master)](https://travis-ci.org/graphql-rust/graphql-client)
44
[![docs](https://docs.rs/graphql_client/badge.svg)](https://docs.rs/graphql_client/latest/graphql_client/)
55
[![crates.io](https://img.shields.io/crates/v/graphql_client.svg)](https://crates.io/crates/graphql_client)
66

@@ -27,7 +27,7 @@ A typed GraphQL client library for Rust.
2727

2828
- In order to provide precise types for a response, graphql_client needs to read the query and the schema at compile-time.
2929

30-
To download the schema, you have multiple options. This projects provides a [CLI](https://github.com/tomhoule/graphql-client/tree/master/graphql_client_cli), but there are also more mature tools like [apollo-cli](https://github.com/apollographql/apollo-cli). It does not matter which one you use, the resulting `schema.json` is the same.
30+
To download the schema, you have multiple options. This projects provides a [CLI](https://github.com/graphql-rust/graphql-client/tree/master/graphql_client_cli), but there are also more mature tools like [apollo-cli](https://github.com/apollographql/apollo-cli). It does not matter which one you use, the resulting `schema.json` is the same.
3131

3232
- We now have everything we need to derive Rust types for our query. This is achieved through a procedural macro, as in the following snippet:
3333

@@ -79,7 +79,7 @@ A typed GraphQL client library for Rust.
7979
}
8080
```
8181

82-
[A complete example using the GitHub GraphQL API is available](https://github.com/tomhoule/graphql-client/tree/master/examples/github), as well as sample [rustdoc output](https://www.tomhoule.com/docs/example_module/).
82+
[A complete example using the GitHub GraphQL API is available](https://github.com/graphql-rust/graphql-client/tree/master/examples/github), as well as sample [rustdoc output](https://www.tomhoule.com/docs/example_module/).
8383

8484
## Deriving specific traits on the response
8585

@@ -167,7 +167,7 @@ Warmest thanks to all those who contributed in any way (not only code) to this p
167167
## Code of conduct
168168

169169
Anyone who interacts with this project in any space, including but not limited to
170-
this GitHub repository, must follow our [code of conduct](https://github.com/tomhoule/graphql-client/blob/master/CODE_OF_CONDUCT.md).
170+
this GitHub repository, must follow our [code of conduct](https://github.com/graphql-rust/graphql-client/blob/master/CODE_OF_CONDUCT.md).
171171

172172
## License
173173

examples/github/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ The example expects to find a valid GitHub API Token in the environment (`GITHUB
99
Then just run the example with a repository name as argument. For example:
1010

1111
```bash
12-
cargo run -- tomhoule/graphql-client
12+
cargo run -- graphql-rust/graphql-client
1313
```

examples/github/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ mod tests {
120120
#[test]
121121
fn parse_repo_name_works() {
122122
assert_eq!(
123-
parse_repo_name("tomhoule/graphql-client").unwrap(),
123+
parse_repo_name("graphql-rust/graphql-client").unwrap(),
124124
("tomhoule", "graphql-client")
125125
);
126126
assert!(parse_repo_name("abcd").is_err());

graphql_client_codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.5.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Utility crate for graphql_client"
66
license = "Apache-2.0 OR MIT"
7-
repository = "https://github.com/tomhoule/graphql-client"
7+
repository = "https://github.com/graphql-rust/graphql-client"
88

99
[dependencies]
1010
failure = "0.1"

graphql_query_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.5.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Utility crate for graphql_client"
66
license = "Apache-2.0 OR MIT"
7-
repository = "https://github.com/tomhoule/graphql-client"
7+
repository = "https://github.com/graphql-rust/graphql-client"
88

99
[lib]
1010
proc-macro = true

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! The top-level documentation resides on the [project README](https://github.com/tomhoule/graphql-client) at the moment.
1+
//! The top-level documentation resides on the [project README](https://github.com/graphql-rust/graphql-client) at the moment.
22
//!
33
//! The main interface to this library is the custom derive that generates modules from a GraphQL query and schema. See the docs for the [`GraphQLQuery`] trait for a full example.
44

0 commit comments

Comments
 (0)