-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathgraphql-async.opam
27 lines (23 loc) · 899 Bytes
/
graphql-async.opam
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
opam-version: "2.0"
maintainer: "Andreas Garnaes <[email protected]>"
authors: "Andreas Garnaes <[email protected]>"
homepage: "https://github.com/andreas/ocaml-graphql-server"
doc: "https://andreas.github.io/ocaml-graphql-server/"
bug-reports: "https://github.com/andreas/ocaml-graphql-server/issues"
dev-repo: "git+https://github.com/andreas/ocaml-graphql-server.git"
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "1.1"}
"graphql" {>= "0.13.0"}
"async_kernel" {>= "v0.9.0"}
"alcotest" {with-test}
"async_unix" {with-test & >= "v0.9.0"}
"yojson" {with-test & >= "1.6.0"}
]
synopsis: "Build GraphQL schemas with Async support"
description: """
`graphql-async` adds support for Async to `graphql`, so you can use Async in your GraphQL schema resolver functions."""