From 4735636a0b8e4bf50e480ad8fb5c1c6a87b4955c Mon Sep 17 00:00:00 2001 From: sunli Date: Wed, 4 Mar 2020 14:27:00 +0800 Subject: [PATCH] Update lib.rs --- src/lib.rs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index a69a2b26..b014a8e7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -26,6 +26,24 @@ //! * [Cargo package](https://crates.io/crates/async-graphql) //! * Minimum supported Rust version: 1.39 or later //! +//! ## Features +//! +//! * Fully support async/await. +//! * Type safety. +//! * Rustfmt friendly (Procedural Macro). +//! * Custom scalar. +//! * Minimal overhead. +//! * Easy integration (hyper, actix_web, tide ...). +//! +//! ## License +//! +//! Licensed under either of +//! +//! * Apache License, Version 2.0, +//! (./LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) +//! * MIT license (./LICENSE-MIT or http://opensource.org/licenses/MIT) +//! at your option. +//! //! ## References //! //! * [GraphQL](https://graphql.org)