this repo has no description
1opam-version: "2.0"
2maintainer: "Adelyn Breedlove <tenseiken595@gmail.com>"
3authors: "Adelyn Breedlove <tenseiken595@gmail.com>"
4license: "MIT"
5homepage: "https://gitlab.com/Mishio595/disml"
6doc: "https://mishio595.gitlab.io/disml/"
7dev-repo: "git+https://gitlab.com/Mishio595/disml"
8bug-reports: "https://gitlab.com/Mishio595/disml/issues"
9tags: ["discord"]
10synopsis: "An OCaml library for interfacing with the Discord API"
11description: """
12Dis.ml is a library that provides a high-level interface to the Discord API.
13Key features include:
14* Automatic sharding
15* Deserialization of Discord objects to record types with related helper methods
16* Automatic rate-limiting
17
18For examples, see `/bin` in the git repo.
19"""
20depends: [
21 "ocaml" {>= "4.04.1"}
22 "dune" {>= "1.3.0"}
23 "async_ssl" {>= "v0.11.0"}
24 "cohttp-async" {>= "1.2.0"}
25 "core" {>= "v0.11.3"}
26 "decompress" {>= "0.8" & < "0.9"}
27 "odoc" {with-doc & >= "1.3.0"}
28 "ppx_deriving_yojson" {>= "3.3"}
29 "ppx_sexp_conv" {>= "v0.11.2"}
30 "websocket-async" {>= "2.12"}
31 "yojson" {< "1.6.0"}
32]
33build: [
34 ["dune" "subst"] {dev}
35 ["dune" "build" "-p" name "-j" jobs]
36 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
37]
38url {
39 src: "https://github.com/Mishio595/disml/archive/0.2.5.tar.gz"
40 checksum: [
41 "md5=294333728fef442b30c13420c00a1441"
42 "sha512=9117726da1dc2b12589666c7550eea6b8d9ba15cb88bcbccbde7069660942a40c2ceaf54dd88f9deb1275840d65b23f6c118591a816a464f069e0fa1bb9d2dc0"
43 ]
44}