this repo has no description
1opam-version: "2.0"
2maintainer: "Andreas Garnaes <andreas.garnaes@gmail.com>"
3authors: "Andreas Garnaes <andreas.garnaes@gmail.com>"
4homepage: "https://github.com/andreas/ocaml-graphql-server"
5doc: "https://andreas.github.io/ocaml-graphql-server/"
6bug-reports: "https://github.com/andreas/ocaml-graphql-server/issues"
7dev-repo: "git+https://github.com/andreas/ocaml-graphql-server.git"
8build: [
9 ["jbuilder" "build" "-p" name "-j" jobs]
10 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
11]
12depends: [
13 "ocaml" {>= "4.03.0"}
14 "jbuilder" {>= "1.0+beta7"}
15 "angstrom" {>= "0.4.0" & < "0.7.0"}
16 "sexplib"
17 "ppx_sexp_conv" {>= "v0.9.0"}
18 "yojson"
19 "rresult"
20 "alcotest" {with-test}
21 "ocaml-migrate-parsetree" {< "2.0.0"}
22]
23synopsis: "Build GraphQL schemas and execute queries against them"
24description: """
25`graphql` is a package for creating GraphQL servers. Current feature set includes:
26
27- Type-safe schema design
28- GraphQL parser in pure OCaml using [angstrom](https://github.com/inhabitedtype/angstrom) (April 2016 RFC draft)
29- Query execution
30- Introspection of schemas
31- Arguments for fields
32- Allows variables in queries
33
34Use `graphql-lwt` for Lwt support, or `graphql-async` for Async support."""
35url {
36 src:
37 "https://github.com/andreas/ocaml-graphql-server/releases/download/0.2.0/graphql-0.2.0.tbz"
38 checksum: [
39 "sha256=301feef12f3e8e649f3b1bad27908d1cd90e3b92d2405e98c2bb157f659ab9db"
40 "md5=1228c9a47292052b84cc6dd67a899091"
41 ]
42}