diff --git a/Cargo.toml b/Cargo.toml index 2583a2fb..bc0e5184 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -86,8 +86,8 @@ members = [ "parser", "derive", "integrations/actix-web", - "integrations/warp", - "integrations/tide", "integrations/rocket", + "integrations/tide", + "integrations/warp", "benchmark", ] diff --git a/integrations/README.md b/integrations/README.md index d219ca4e..390b98f3 100644 --- a/integrations/README.md +++ b/integrations/README.md @@ -41,6 +41,6 @@ they must all internally use the below functions. ## Integration Status - Actix-web: Complete integration. -- Rocket: Missing websocket support. +- Rocket: Missing websocket support (blocked on [support in Rocket itself](https://github.com/SergioBenitez/Rocket/issues/90)). - Tide: Missing websocket support (blocked on [support in Tide itself](https://github.com/http-rs/tide/issues/67)). - Warp: Complete integration. diff --git a/integrations/actix-web/Cargo.toml b/integrations/actix-web/Cargo.toml index cba213eb..46964040 100644 --- a/integrations/actix-web/Cargo.toml +++ b/integrations/actix-web/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" description = "async-graphql for actix-web" publish = true license = "MIT/Apache-2.0" -documentation = "https://docs.rs/async-graphql/" +documentation = "https://docs.rs/async-graphql-actix-web/" homepage = "https://github.com/async-graphql/async-graphql" repository = "https://github.com/async-graphql/async-graphql" keywords = ["futures", "async", "graphql"] diff --git a/integrations/tide/Cargo.toml b/integrations/tide/Cargo.toml index 2ff1b902..a46b0517 100644 --- a/integrations/tide/Cargo.toml +++ b/integrations/tide/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" description = "async-graphql for tide" publish = true license = "MIT/Apache-2.0" -documentation = "https://docs.rs/async-graphql/" +documentation = "https://docs.rs/async-graphql-tide/" homepage = "https://github.com/async-graphql/async-graphql" repository = "https://github.com/async-graphql/async-graphql" keywords = ["futures", "async", "graphql"] diff --git a/integrations/warp/Cargo.toml b/integrations/warp/Cargo.toml index 9807b337..131d207d 100644 --- a/integrations/warp/Cargo.toml +++ b/integrations/warp/Cargo.toml @@ -4,9 +4,8 @@ version = "2.0.4" authors = ["sunli ", "Koxiaet"] edition = "2018" description = "async-graphql for warp" -publish = true license = "MIT/Apache-2.0" -documentation = "https://docs.rs/async-graphql/" +documentation = "https://docs.rs/async-graphql-warp/" homepage = "https://github.com/async-graphql/async-graphql" repository = "https://github.com/async-graphql/async-graphql" keywords = ["futures", "async", "graphql"]