diff options
| author | Adelyn Breelove <[email protected]> | 2019-01-18 09:19:36 -0700 |
|---|---|---|
| committer | Adelyn Breelove <[email protected]> | 2019-01-18 09:19:36 -0700 |
| commit | 334f1d404c79cfe79a50d2c8a5086edb2e7fcc2b (patch) | |
| tree | 418782cd1ebbc63620ab98784e791aaee2f42fd5 | |
| parent | more improvements to test bot, fix message module (diff) | |
| download | disml-334f1d404c79cfe79a50d2c8a5086edb2e7fcc2b.tar.xz disml-334f1d404c79cfe79a50d2c8a5086edb2e7fcc2b.zip | |
update opam file, bump to 0.2.0
| -rw-r--r-- | disml.opam | 32 |
1 files changed, 28 insertions, 4 deletions
@@ -1,15 +1,39 @@ opam-version: "2.0" name: "disml" -version: "~dev" -synopsis: "An OCaml library for interfacing with the Discord API" +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] ] -install: [] -dev-repo: "git+https://gitlab.com/Mishio595/disml"
\ No newline at end of file +build-doc: [ + ["dune" "subst"] {pinned} + ["dune" "build" "-p" "@doc" "-j" jobs] +]
\ No newline at end of file |