From aefe448ede1b70f8b6220c43afd1d41cc57105c6 Mon Sep 17 00:00:00 2001 From: sunli Date: Tue, 28 Apr 2020 15:41:31 +0800 Subject: [PATCH] Move project to async-graphql --- Cargo.toml | 4 ++-- README.md | 14 +++++++------- async-graphql-actix-web/Cargo.toml | 4 ++-- async-graphql-derive/Cargo.toml | 4 ++-- async-graphql-tide/Cargo.toml | 4 ++-- async-graphql-tide/src/lib.rs | 2 +- async-graphql-warp/Cargo.toml | 4 ++-- async-graphql-warp/src/lib.rs | 2 +- docs/en/src/quickstart.md | 2 +- docs/zh-CN/src/apollo_federation.md | 2 +- docs/zh-CN/src/custom_extensions.md | 2 +- docs/zh-CN/src/quickstart.md | 2 +- src/lib.rs | 6 +++--- src/types/upload.rs | 2 +- 14 files changed, 27 insertions(+), 27 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f4ab474d..1bd446c6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,8 +7,8 @@ description = "The GraphQL server library implemented by rust" publish = true license = "MIT/Apache-2.0" documentation = "https://docs.rs/async-graphql/" -homepage = "https://github.com/sunli829/async-graphql" -repository = "https://github.com/sunli829/async-graphql" +homepage = "https://github.com/async-graphql/async-graphql" +repository = "https://github.com/async-graphql/async-graphql" keywords = ["futures", "async", "graphql"] categories = ["network-programming", "asynchronous"] readme = "README.md" diff --git a/README.md b/README.md index 019cff72..62b49a3f 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@
- + - + )* +/// *[Full Example]()* /// /// ```no_run /// use async_graphql::*; diff --git a/async-graphql-warp/Cargo.toml b/async-graphql-warp/Cargo.toml index 49889b3a..d31b36a9 100644 --- a/async-graphql-warp/Cargo.toml +++ b/async-graphql-warp/Cargo.toml @@ -7,8 +7,8 @@ description = "async-graphql for warp" publish = true license = "MIT/Apache-2.0" documentation = "https://docs.rs/async-graphql/" -homepage = "https://github.com/sunli829/async-graphql" -repository = "https://github.com/sunli829/async-graphql" +homepage = "https://github.com/async-graphql/async-graphql" +repository = "https://github.com/async-graphql/async-graphql" keywords = ["futures", "async", "graphql"] categories = ["network-programming", "asynchronous"] diff --git a/async-graphql-warp/src/lib.rs b/async-graphql-warp/src/lib.rs index 144e4c3a..89a7e1ca 100644 --- a/async-graphql-warp/src/lib.rs +++ b/async-graphql-warp/src/lib.rs @@ -36,7 +36,7 @@ impl Reject for BadRequest {} /// It outputs a tuple containing the `Schema` and `QuertBuilder`. /// /// # Examples -/// *[Full Example]()* +/// *[Full Example]()* /// /// ```no_run /// diff --git a/docs/en/src/quickstart.md b/docs/en/src/quickstart.md index d6e68203..cb613b65 100644 --- a/docs/en/src/quickstart.md +++ b/docs/en/src/quickstart.md @@ -51,4 +51,4 @@ let json = serde_json::to_vec(async_graphql::http::GQLResponse(res)); ## Web server integration -Please refer to https://github.com/sunli829/async-graphql-examples. \ No newline at end of file +Please refer to https://github.com/async-graphql/examples. \ No newline at end of file diff --git a/docs/zh-CN/src/apollo_federation.md b/docs/zh-CN/src/apollo_federation.md index 927360bc..c789eee6 100644 --- a/docs/zh-CN/src/apollo_federation.md +++ b/docs/zh-CN/src/apollo_federation.md @@ -38,4 +38,4 @@ type User @key(id: ID!) { 你必须在这个实体查找函数中根据key来创建对应的对象。 -完整的例子请参考https://github.com/sunli829/async-graphql-examples/tree/master/federation +完整的例子请参考https://github.com/async-graphql/examples/tree/master/federation diff --git a/docs/zh-CN/src/custom_extensions.md b/docs/zh-CN/src/custom_extensions.md index b6ce8ad9..4d914c45 100644 --- a/docs/zh-CN/src/custom_extensions.md +++ b/docs/zh-CN/src/custom_extensions.md @@ -4,4 +4,4 @@ 只需要实现`async_graphql::Extension`就能够定义一个扩展对象,然后在创建`Schema`的时候调用`Schema::extension`应用扩展。 -你可以参考[Apollo tracing](https://github.com/sunli829/async-graphql/blob/master/src/extensions/tracing.rs)来实现自己的扩展类型。 \ No newline at end of file +你可以参考[Apollo tracing](https://github.com/async-graphql/async-graphql/blob/master/src/extensions/tracing.rs)来实现自己的扩展类型。 \ No newline at end of file diff --git a/docs/zh-CN/src/quickstart.md b/docs/zh-CN/src/quickstart.md index 23c7eb83..1217e5d6 100644 --- a/docs/zh-CN/src/quickstart.md +++ b/docs/zh-CN/src/quickstart.md @@ -51,4 +51,4 @@ let json = serde_json::to_vec(async_graphql::http::GQLResponse(res)); ## 和Web Server的集成 -请参考https://github.com/sunli829/async-graphql-examples。 \ No newline at end of file +请参考https://github.com/async-graphql/examples。 \ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs index e25675cb..291d7327 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,9 +2,9 @@ //! //!
//! -//! +//! //! -// +// //! //! //! )* +/// *[Full Example]()* /// /// ``` /// use async_graphql::Upload;