diff --git a/async-graphql-rocket/Cargo.toml b/async-graphql-rocket/Cargo.toml index 9e1b28a4..581524d1 100644 --- a/async-graphql-rocket/Cargo.toml +++ b/async-graphql-rocket/Cargo.toml @@ -4,7 +4,7 @@ version = "1.17.21" authors = ["Daniel Wiesenberg "] edition = "2018" description = "async-graphql for Rocket.rs" -publish = true +#publish = true license = "MIT/Apache-2.0" documentation = "https://docs.rs/async-graphql/" homepage = "https://github.com/async-graphql/async-graphql" diff --git a/async-graphql-rocket/src/lib.rs b/async-graphql-rocket/src/lib.rs index 41e148b1..8d36e9e4 100644 --- a/async-graphql-rocket/src/lib.rs +++ b/async-graphql-rocket/src/lib.rs @@ -29,7 +29,7 @@ use yansi::Paint; /// /// ```rust,no_run /// -/// use async_graphql::{EmptyMutation, EmptySubscription, Schema}; +/// use async_graphql::{EmptyMutation, EmptySubscription, Schema, Object}; /// use async_graphql_rocket::{GQLRequest, GraphQL, GQLResponse}; /// use rocket::{response::content, routes, State, http::Status}; ///