diff --git a/Cargo.toml b/Cargo.toml index 84015e94..665be6c6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-graphql" -version = "1.12.0" +version = "1.12.1" authors = ["sunli "] edition = "2018" description = "The GraphQL server library implemented by rust" @@ -18,7 +18,7 @@ default = ["bson", "uuid", "url", "chrono-tz"] [dependencies] async-graphql-parser = { path = "async-graphql-parser", version = "0.3.0" } -async-graphql-derive = { path = "async-graphql-derive", version = "1.12.0" } +async-graphql-derive = { path = "async-graphql-derive", version = "1.12.1" } anyhow = "1.0.26" thiserror = "1.0.11" async-trait = "0.1.30" diff --git a/async-graphql-actix-web/Cargo.toml b/async-graphql-actix-web/Cargo.toml index c70cafc7..704ed8ad 100644 --- a/async-graphql-actix-web/Cargo.toml +++ b/async-graphql-actix-web/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-graphql-actix-web" -version = "1.4.0" +version = "1.4.1" authors = ["sunli "] edition = "2018" description = "async-graphql for actix-web" @@ -13,7 +13,7 @@ keywords = ["futures", "async", "graphql"] categories = ["network-programming", "asynchronous"] [dependencies] -async-graphql = { path = "..", version = "1.12.0" } +async-graphql = { path = "..", version = "1.12.1" } actix-web = "2.0.0" actix-web-actors = "2.0.0" actix = "0.9.0" diff --git a/async-graphql-derive/Cargo.toml b/async-graphql-derive/Cargo.toml index 1565882b..c37fedca 100644 --- a/async-graphql-derive/Cargo.toml +++ b/async-graphql-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-graphql-derive" -version = "1.12.0" +version = "1.12.1" authors = ["sunli "] edition = "2018" description = "Macros for async-graphql" @@ -18,7 +18,7 @@ proc-macro = true [dependencies] async-graphql-parser = { path = "../async-graphql-parser", version = "0.3.0" } proc-macro2 = "1.0.6" -syn = { version = "1.0.13", features = ["full"] } +syn = { version = "1.0.20", features = ["full"] } quote = "1.0.3" Inflector = "0.11.4" proc-macro-crate = "0.1.4" diff --git a/async-graphql-derive/src/utils.rs b/async-graphql-derive/src/utils.rs index 5257db49..fcff3f79 100644 --- a/async-graphql-derive/src/utils.rs +++ b/async-graphql-derive/src/utils.rs @@ -8,7 +8,8 @@ pub fn get_crate_name(internal: bool) -> TokenStream { if internal { quote! { crate } } else { - let name = crate_name("async-graphql").expect("async-graphql is not present in `Cargo.toml`"); + let name = + crate_name("async-graphql").expect("async-graphql is not present in `Cargo.toml`"); let id = Ident::new(&name, Span::call_site()); quote! { #id } } diff --git a/async-graphql-tide/Cargo.toml b/async-graphql-tide/Cargo.toml index 322ee0ff..6d3f72dc 100644 --- a/async-graphql-tide/Cargo.toml +++ b/async-graphql-tide/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-graphql-tide" -version = "1.4.0" +version = "1.4.1" authors = ["vkill "] edition = "2018" description = "async-graphql for tide" @@ -13,7 +13,7 @@ keywords = ["futures", "async", "graphql"] categories = ["network-programming", "asynchronous"] [dependencies] -async-graphql = { path = "..", version = "1.12.0" } +async-graphql = { path = "..", version = "1.12.1" } tide = "0.8" async-trait = "0.1.30" diff --git a/async-graphql-warp/Cargo.toml b/async-graphql-warp/Cargo.toml index 5b7ba424..b75fc01e 100644 --- a/async-graphql-warp/Cargo.toml +++ b/async-graphql-warp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-graphql-warp" -version = "1.4.0" +version = "1.4.1" authors = ["sunli "] edition = "2018" description = "async-graphql for warp" @@ -13,7 +13,7 @@ keywords = ["futures", "async", "graphql"] categories = ["network-programming", "asynchronous"] [dependencies] -async-graphql = { path = "..", version = "1.12.0" } +async-graphql = { path = "..", version = "1.12.1" } warp = "0.2.2" futures = "0.3.0" bytes = "0.5.4"