-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCargo.toml
38 lines (33 loc) · 979 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "dataloader"
version = "0.18.0"
edition = "2018"
authors = ["cksac <[email protected]>"]
description = "Rust implementation of Facebook's DataLoader using async-await."
keywords = ["batcher", "dataloader", "cache"]
categories = ["asynchronous", "caching"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/cksac/dataloader-rs"
homepage = "https://github.com/cksac/dataloader-rs"
documentation = "https://docs.rs/dataloader"
[badges]
travis-ci = { repository = "/cksac/dataloader-rs" }
[features]
default = ["runtime-async-std"]
runtime-async-std = [
"async-std",
]
runtime-tokio = [
"tokio"
]
[dependencies]
async-std = { version = "1", optional = true }
tokio = { version = "1", features = [ "sync", "rt" ], optional = true }
[dev-dependencies]
futures = "0.3"
fake = { version = "3", features = ["derive"] }
rand = "0.8"
juniper = "0.16"
async-graphql = { version = "7", default-features = false }
serde_json = "1"