opam-version: "2.0" name: "disml" version: "0.2.5" maintainer: "Adelyn Breedlove " authors: "Adelyn Breedlove " 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_deriving_yojson" {>= "3.3"} "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} ]