blob: d4b822c3d5c149fa9588294751caabb8d1f0a30a (
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
|
opam-version: "2.0"
name: "disml"
version: "0.2.0"
maintainer: "Adelyn Breedlove <[email protected]>"
authors: "Adelyn Breedlove <[email protected]>"
license: "MIT"
homepage: "https://gitlab.com/Mishio595/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.07.0"}
"dune" {build & >= "1.3.0"}
"async_ssl" {>= "v0.11.0"}
"core" {>= "v0.11.3"}
"cohttp-async" {>= "1.2.0"}
"ppx_jane" {>= "v0.11.0"}
"ppx_deriving_yojson" {>= "3.1"}
"websocket-async" {>= "2.12"}
"zlib" {>= "0.5"}
]
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
]
build-doc: [
["dune" "subst"] {pinned}
["dune" "build" "-p" "@doc" "-j" jobs]
]
|