async-graphql/Cargo.toml

38 lines
1001 B
TOML
Raw Normal View History

2020-03-01 10:54:34 +00:00
[package]
name = "async-graphql"
2020-03-03 11:17:48 +00:00
version = "0.5.0"
2020-03-01 10:54:34 +00:00
authors = ["sunli <scott_s829@163.com>"]
edition = "2018"
2020-03-01 13:56:14 +00:00
description = "The GraphQL server library implemented by rust"
publish = true
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql/"
homepage = "https://github.com/sunli829/async-graphql"
repository = "https://github.com/sunli829/async-graphql"
keywords = ["futures", "async", "graphql"]
2020-03-03 11:27:04 +00:00
categories = ["network-programming", "asynchronous"]
2020-03-01 13:56:14 +00:00
readme = "README.md"
2020-03-01 10:54:34 +00:00
[features]
default = ["chrono", "uuid"]
[dependencies]
async-graphql-derive = { path = "async-graphql-derive" }
graphql-parser = "0.2.3"
anyhow = "1.0.26"
thiserror = "1.0.11"
async-trait = "0.1.24"
serde = "1.0.104"
serde_derive = "1.0.104"
serde_json = "1.0.48"
fnv = "1.0.6"
chrono = { version = "0.4.10", optional = true }
uuid = { version = "0.8.1", optional = true }
[dev-dependencies]
async-std = { version = "1.5.0", features = ["attributes"] }
[workspace]
members = [
"async-graphql-derive"
]