[package] name = "entity-async-graphql" description = "Support to integration async-graphql into entity crate." version = "0.3.2" authors = ["Chip Senkbeil "] edition = "2018" homepage = "https://github.com/chipsenkbeil/entity-rs" repository = "https://github.com/chipsenkbeil/entity-rs" readme = "README.md" license = "MIT OR Apache-2.0" [features] macros = ["entity-async-graphql-macros"] [[example]] name = "user" required-features = ["macros", "entity/global", "entity/macros"] [dependencies] entity = { version = "=0.3.2", path = "../.." } entity-async-graphql-macros = { version = "=0.3.2", path = "../entity-async-graphql-macros", optional = true } async-graphql = { version = "2.7.4" } derive_more = { version = "0.99.11", default-features = false, features = ["from", "into"] } paste = "1.0.4"