async-graphql/Cargo.toml

61 lines
1.5 KiB
TOML
Raw Normal View History

2020-03-01 10:54:34 +00:00
[package]
name = "async-graphql"
2020-05-05 09:55:01 +00:00
version = "1.10.9"
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/"
2020-04-28 07:41:31 +00:00
homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql"
2020-03-01 13:56:14 +00:00
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]
2020-04-24 02:40:26 +00:00
default = ["bson", "uuid", "url", "chrono-tz"]
2020-03-01 10:54:34 +00:00
[dependencies]
2020-05-05 09:55:01 +00:00
async-graphql-derive = { path = "async-graphql-derive", version = "1.10.9" }
2020-03-30 07:31:07 +00:00
graphql-parser = "=0.2.3"
2020-03-01 10:54:34 +00:00
anyhow = "1.0.26"
thiserror = "1.0.11"
async-trait = "0.1.24"
serde = "1.0.104"
serde_derive = "1.0.104"
2020-03-25 03:39:28 +00:00
serde_json = "1.0.48"
2020-03-17 09:26:59 +00:00
bytes = "0.5.4"
2020-03-19 09:20:12 +00:00
Inflector = "0.11.4"
base64 = "0.12.0"
byteorder = "1.3.4"
2020-03-25 03:39:28 +00:00
futures = "0.3.0"
2020-03-26 03:34:28 +00:00
parking_lot = "0.10.0"
chrono = "0.4.10"
2020-03-29 12:02:52 +00:00
slab = "0.4.2"
once_cell = "1.3.1"
itertools = "0.9.0"
tempdir = "0.3.7"
httparse = "1.3.4"
mime = "0.3.16"
http = "0.2.1"
2020-04-23 13:36:04 +00:00
fnv = "1.0.6"
2020-04-24 02:40:26 +00:00
regex = "1.3.5"
2020-04-28 07:01:19 +00:00
tracing = "0.1.13"
bson = { version = "0.14.1", optional = true }
2020-03-01 10:54:34 +00:00
uuid = { version = "0.8.1", optional = true }
2020-03-20 03:56:08 +00:00
url = { version = "2.1.1", optional = true }
2020-03-27 01:03:30 +00:00
chrono-tz = { version = "0.5.1", optional = true }
2020-03-01 10:54:34 +00:00
[dev-dependencies]
async-std = { version = "1.5.0", features = ["attributes"] }
2020-04-14 01:53:17 +00:00
serde = "1.0.104"
serde_derive = "1.0.104"
2020-03-01 10:54:34 +00:00
[workspace]
members = [
2020-03-14 03:46:20 +00:00
"async-graphql-derive",
2020-04-14 01:53:17 +00:00
"async-graphql-actix-web",
"async-graphql-warp",
2020-04-26 11:53:44 +00:00
"async-graphql-tide",
2020-03-01 10:54:34 +00:00
]