aboutsummaryrefslogtreecommitdiff
path: root/disml.opam
blob: d386870c23d4152dd6b525343050794394d52688 (plain) (blame)
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
38
39
40
opam-version: "2.0"
name: "disml"
version: "0.2.5"
maintainer: "Adelyn Breedlove <[email protected]>"
authors: "Adelyn Breedlove <[email protected]>"
license: "MIT"
homepage: "https://gitlab.com/Mishio595/disml"
doc: "https://mishio595.gitlab.io/disml/"
dev-repo: "git+https://gitlab.com/Mishio595/disml"
bug-reports: "https://gitlab.com/Mishio595/disml/issues"
tags: ["discord"]
synopsis: "An OCaml library for interfacing with the Discord API"
description: """
Dis.ml is a library that provides a high-level interface to the Discord API.
Key features include:
* Automatic sharding
* Deserialization of Discord objects to record types with related helper methods
* Automatic rate-limiting

For examples, see `/bin` in the git repo.
"""
depends: [
  "ocaml" {>= "4.04.1"}
  "dune" {build & >= "1.3.0"}
  "async_ssl" {>= "v0.11.0"}
  "cohttp-async" {>= "1.2.0"}
  "core" {>= "v0.11.3"}
  "decompress" {<= "0.8.1"}
  "odoc" {with-doc & >= "1.3.0"}
  "ppx_yojson_conv" {>= "v0.14.0"}
  "ppx_sexp_conv" {>= "v0.11.2"}
  "websocket-async" {>= "2.12"}
  "yojson" {>= "1.6.0"}
  "bitmasks" {>= "1.1.0"}
]
build: [
  ["dune" "subst"] {pinned}
  ["dune" "build" "-p" name "-j" jobs]
  ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
]