aboutsummaryrefslogtreecommitdiff
path: root/dune
diff options
context:
space:
mode:
authorAdelyn Breedlove <[email protected]>2018-12-15 18:02:29 +0000
committerAdelyn Breedlove <[email protected]>2018-12-15 18:02:29 +0000
commit910ce60bba69b961c82e29ff1bb63bf4d3fe5519 (patch)
tree690861418bed15de47e7cf5672d96fdacc9abe5e /dune
parentMerge branch 'patch-1' into 'master' (diff)
parentMerging (diff)
downloaddisml-910ce60bba69b961c82e29ff1bb63bf4d3fe5519.tar.xz
disml-910ce60bba69b961c82e29ff1bb63bf4d3fe5519.zip
Merge branch 'dev' into 'master'
Merge first semi-usable state of dev-branch in a while See merge request Mishio595/disml!10
Diffstat (limited to 'dune')
-rw-r--r--dune40
1 files changed, 34 insertions, 6 deletions
diff --git a/dune b/dune
index 2b4861d..4ed0b70 100644
--- a/dune
+++ b/dune
@@ -1,14 +1,42 @@
(library
(name disml)
- (modules endpoints http client sharder opcode)
- (libraries core async_ssl cohttp-async yojson websocket-async zlib)
+ (public_name disml)
+ (synopsis "An OCaml library for interfacing with the Discord API")
+ (modules
+ activity activity_t activity_j
+ attachment attachment_t attachment_j
+ ban ban_t ban_j
+ channel channel_t channel_j
+ embed embed_t embed_j
+ emoji emoji_t emoji_j
+ guild guild_t guild_j
+ member member_t member_j
+ message message_t message_j
+ presence presence_t presence_j
+ reaction reaction_t reaction_j
+ role role_t role_j
+ snowflake snowflake_t snowflake_j
+ user user_t user_j
+ client
+ dispatch
+ endpoints
+ event
+ http
+ models
+ opcode
+ rl
+ s
+ sharder
+ )
+ (libraries core async_ssl cohttp-async yojson websocket-async zlib atdgen)
+ ;(preprocess (pps ppx_jane))
)
; Test executable
(executable
- (name bot)
- (modules bot)
- (libraries core async disml)
+ (name bot)
+ (modules bot handler)
+ (libraries core async_ssl disml)
)
-(include_subdirs unqualified) \ No newline at end of file
+(include_subdirs unqualified)