diff --git a/Cargo.toml b/Cargo.toml index 446a5c69..8a24af3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,67 +1,67 @@ -[package] -name = "async-graphql" -version = "1.14.9" -authors = ["sunli "] -edition = "2018" -description = "A GraphQL server library implemented in Rust" -publish = true -license = "MIT/Apache-2.0" -documentation = "https://docs.rs/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" - -[features] -default = ["bson", "url", "chrono-tz"] - -[dependencies] -async-graphql-parser = { path = "async-graphql-parser", version = "1.14.2" } -async-graphql-derive = { path = "async-graphql-derive", version = "1.14.0" } -anyhow = "1.0.26" -thiserror = "1.0.11" -async-trait = "0.1.30" -serde = "1.0.104" -serde_derive = "1.0.104" -serde_json = "1.0.48" -bytes = "0.5.4" -Inflector = "0.11.4" -base64 = "0.12.0" -byteorder = "1.3.4" -futures = "0.3.0" -parking_lot = "0.10.0" -chrono = "0.4.10" -slab = "0.4.2" -once_cell = "1.3.1" -itertools = "0.9.0" -tempfile = "3.1.0" -httparse = "1.3.4" -mime = "0.3.16" -http = "0.2.1" -fnv = "1.0.6" -regex = "1.3.5" -tracing = "0.1.13" -indexmap = "1.3.2" -async-stream = "0.2.1" -multer = "1.2.0" -log = "0.4.8" -bson = { version = "0.14.1", optional = true } -uuid = { version = "0.8.1", features = ["v4"] } -url = { version = "2.1.1", optional = true } -chrono-tz = { version = "0.5.1", optional = true } - -[dev-dependencies] -async-std = { version = "1.5.0", features = ["attributes"] } -serde = "1.0.104" -serde_derive = "1.0.104" - -[workspace] -members = [ - "async-graphql-parser", - "async-graphql-derive", - "async-graphql-actix-web", - "async-graphql-warp", - "async-graphql-tide", -# "async-graphql-lambda", +[package] +name = "async-graphql" +version = "1.14.10" +authors = ["sunli "] +edition = "2018" +description = "A GraphQL server library implemented in Rust" +publish = true +license = "MIT/Apache-2.0" +documentation = "https://docs.rs/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" + +[features] +default = ["bson", "url", "chrono-tz"] + +[dependencies] +async-graphql-parser = { path = "async-graphql-parser", version = "1.14.2" } +async-graphql-derive = { path = "async-graphql-derive", version = "1.14.0" } +anyhow = "1.0.26" +thiserror = "1.0.11" +async-trait = "0.1.30" +serde = "1.0.104" +serde_derive = "1.0.104" +serde_json = "1.0.48" +bytes = "0.5.4" +Inflector = "0.11.4" +base64 = "0.12.0" +byteorder = "1.3.4" +futures = "0.3.0" +parking_lot = "0.10.0" +chrono = "0.4.10" +slab = "0.4.2" +once_cell = "1.3.1" +itertools = "0.9.0" +tempfile = "3.1.0" +httparse = "1.3.4" +mime = "0.3.16" +http = "0.2.1" +fnv = "1.0.6" +regex = "1.3.5" +tracing = "0.1.13" +indexmap = "1.3.2" +async-stream = "0.2.1" +multer = "1.2.0" +log = "0.4.8" +bson = { version = "0.14.1", optional = true } +uuid = { version = "0.8.1", features = ["v4"] } +url = { version = "2.1.1", optional = true } +chrono-tz = { version = "0.5.1", optional = true } + +[dev-dependencies] +async-std = { version = "1.5.0", features = ["attributes"] } +serde = "1.0.104" +serde_derive = "1.0.104" + +[workspace] +members = [ + "async-graphql-parser", + "async-graphql-derive", + "async-graphql-actix-web", + "async-graphql-warp", + "async-graphql-tide", +# "async-graphql-lambda", ] diff --git a/async-graphql-actix-web/Cargo.toml b/async-graphql-actix-web/Cargo.toml index 7868865b..b0254def 100644 --- a/async-graphql-actix-web/Cargo.toml +++ b/async-graphql-actix-web/Cargo.toml @@ -1,23 +1,23 @@ -[package] -name = "async-graphql-actix-web" -version = "1.14.7" -authors = ["sunli "] -edition = "2018" -description = "async-graphql for actix-web" -publish = true -license = "MIT/Apache-2.0" -documentation = "https://docs.rs/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"] - -[dependencies] -async-graphql = { path = "..", version = "1.14.0" } -actix-web = "2.0.0" -actix-web-actors = "2.0.0" -actix = "0.9.0" -actix-rt = "1.0.0" -futures = "0.3.0" -bytes = "0.5.4" +[package] +name = "async-graphql-actix-web" +version = "1.14.7" +authors = ["sunli "] +edition = "2018" +description = "async-graphql for actix-web" +publish = true +license = "MIT/Apache-2.0" +documentation = "https://docs.rs/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"] + +[dependencies] +async-graphql = { path = "..", version = "1.14.0" } +actix-web = "2.0.0" +actix-web-actors = "2.0.0" +actix = "0.9.0" +actix-rt = "1.0.0" +futures = "0.3.0" +bytes = "0.5.4" serde_json = "1.0.48" diff --git a/async-graphql-tide/Cargo.toml b/async-graphql-tide/Cargo.toml index 3e70cc03..cfceaba4 100644 --- a/async-graphql-tide/Cargo.toml +++ b/async-graphql-tide/Cargo.toml @@ -1,25 +1,25 @@ -[package] -name = "async-graphql-tide" -version = "1.14.7" -authors = ["vkill "] -edition = "2018" -description = "async-graphql for tide" -publish = true -license = "MIT/Apache-2.0" -documentation = "https://docs.rs/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"] - -[dependencies] -async-graphql = { path = "..", version = "1.14.0" } -tide = "0.9.0" -async-trait = "0.1.30" -serde_json = "1.0.51" -futures = "0.3.4" -async-std = "1.5.0" - -[dev-dependencies] -smol = { version = "0.1.10", features = ["tokio02"] } +[package] +name = "async-graphql-tide" +version = "1.14.10" +authors = ["vkill "] +edition = "2018" +description = "async-graphql for tide" +publish = true +license = "MIT/Apache-2.0" +documentation = "https://docs.rs/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"] + +[dependencies] +async-graphql = { path = "..", version = "1.14.0" } +tide = "0.9.0" +async-trait = "0.1.30" +serde_json = "1.0.51" +futures = "0.3.4" +async-std = "1.5.0" + +[dev-dependencies] +smol = { version = "0.1.10", features = ["tokio02"] } reqwest = "0.10.4" diff --git a/async-graphql-warp/Cargo.toml b/async-graphql-warp/Cargo.toml index 3f5d33f4..e2074d95 100644 --- a/async-graphql-warp/Cargo.toml +++ b/async-graphql-warp/Cargo.toml @@ -1,24 +1,24 @@ -[package] -name = "async-graphql-warp" -version = "1.14.9" -authors = ["sunli "] -edition = "2018" -description = "async-graphql for warp" -publish = true -license = "MIT/Apache-2.0" -documentation = "https://docs.rs/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"] - -[dependencies] -async-graphql = { path = "..", version = "1.14.0" } -warp = "0.2.2" -futures = "0.3.0" -bytes = "0.5.4" -serde_json = "1.0.48" -hyper = "0.13.6" - -[dev-dependencies] +[package] +name = "async-graphql-warp" +version = "1.14.9" +authors = ["sunli "] +edition = "2018" +description = "async-graphql for warp" +publish = true +license = "MIT/Apache-2.0" +documentation = "https://docs.rs/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"] + +[dependencies] +async-graphql = { path = "..", version = "1.14.0" } +warp = "0.2.2" +futures = "0.3.0" +bytes = "0.5.4" +serde_json = "1.0.48" +hyper = "0.13.6" + +[dev-dependencies] tokio = { version = "0.2", features = ["macros"] }