-
Notifications
You must be signed in to change notification settings - Fork 3
/
slack.opam
47 lines (45 loc) · 910 Bytes
/
slack.opam
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
40
41
42
43
44
45
46
47
opam-version: "2.0"
name: "slack"
version: "0.1"
license: "MIT"
maintainer: "Ahrefs <[email protected]>"
authors: "Ahrefs <[email protected]>"
homepage: "https://github.com/ahrefs/slack"
bug-reports: "https://github.com/ahrefs/slack/issues"
dev-repo: "git+https://github.com/ahrefs/slack.git"
synopsis: "Slack API implementation"
description: "OCaml interface for accessing Slack APIs and receiving events."
depends: [
"dune" {>= "3.4"}
"atdgen" {> "2.0.0"}
"atdgen-runtime" {> "2.0.0"}
"biniou"
"cstruct"
"cmarkit"
"cmdliner"
"devkit" {>= "1.20210517" }
"extlib" {>= "1.7.7"}
"hex"
"lwt" {>= "5.1.0"}
"lwt_ppx"
"nocrypto"
"ppx_deriving"
"re2"
"uri"
"yojson"
"ocamlformat" {= "0.26.1" & with-dev-setup}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@doc" {with-doc}
"@runtest" {with-test}
]
]