forked from andreas/ocaml-graphql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphql-eio.opam
25 lines (21 loc) · 791 Bytes
/
graphql-eio.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
opam-version: "2.0"
maintainer: "Andreas Garnaes <andreas.garnaes@gmail.com>"
authors: "Andreas Garnaes <andreas.garnaes@gmail.com>"
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"}
"alcotest" {with-test}
"eio"
]
synopsis: "Build GraphQL schemas with Lwt support"
description: """
`graphql-eio` adds support for EIO to `graphql`, so you can use Eio in your GraphQL schema resolver functions."""