aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdelyn Breelove <[email protected]>2019-01-18 09:19:36 -0700
committerAdelyn Breelove <[email protected]>2019-01-18 09:19:36 -0700
commit334f1d404c79cfe79a50d2c8a5086edb2e7fcc2b (patch)
tree418782cd1ebbc63620ab98784e791aaee2f42fd5
parentmore improvements to test bot, fix message module (diff)
downloaddisml-334f1d404c79cfe79a50d2c8a5086edb2e7fcc2b.tar.xz
disml-334f1d404c79cfe79a50d2c8a5086edb2e7fcc2b.zip
update opam file, bump to 0.2.0
-rw-r--r--disml.opam32
1 files changed, 28 insertions, 4 deletions
diff --git a/disml.opam b/disml.opam
index a1564d7..d4b822c 100644
--- a/disml.opam
+++ b/disml.opam
@@ -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