async-graphql/Cargo.toml

55 lines
1.4 KiB
TOML
Raw Normal View History

2020-03-01 10:54:34 +00:00
[package]
name = "async-graphql"
2020-04-02 12:43:23 +00:00
version = "1.7.1"
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]
2020-03-27 01:03:30 +00:00
default = ["bson", "uuid", "url", "chrono-tz", "validators"]
2020-03-29 12:02:52 +00:00
validators = ["regex"]
2020-03-01 10:54:34 +00:00
[dependencies]
2020-04-02 12:43:23 +00:00
async-graphql-derive = { path = "async-graphql-derive", version = "1.7.1" }
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"
2020-03-21 07:07:11 +00:00
regex = { version = "1.3.5", optional = true }
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-03-05 00:39:56 +00:00
actix-web = "2.0.0"
actix-rt = "1.0.0"
tide = "0.6.0"
mime = "0.3.16"
2020-03-01 10:54:34 +00:00
[workspace]
members = [
2020-03-14 03:46:20 +00:00
"async-graphql-derive",
2020-04-01 09:15:18 +00:00
"async-graphql-actix-web"
2020-03-01 10:54:34 +00:00
]