-
Notifications
You must be signed in to change notification settings - Fork 0
/
ocamqping.opam
32 lines (32 loc) · 879 Bytes
/
ocamqping.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
opam-version: "2.0"
name: "ocamqping"
version: "~dev"
synopsis: "AMQP server ping tool"
maintainer: "Pavel Argentov <[email protected]>"
authors: "Pavel Argentov <[email protected]>"
license: "MIT"
homepage: "https://github.com/argent-smith/ocamqping"
bug-reports: "https://github.com/argent-smith/ocamqping/issues"
depends: [
"ocaml" {build & >= "4.04"}
"dune" {build & >= "1.1.1"}
"lwt" {build}
"base" {build}
"ppx_jane" {build}
"cmdliner" {build}
"amqp-client-lwt" {build}
"ag_logger" {build}
"merlin" {post}
"ocaml-lsp-server" {post}
"ocamlformat" {post}
"ocamlformat-rpc" {post}
]
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
]
run-test: ["dune" "runtest" "-p" name]
dev-repo: "git+https://github.com/argent-smith/ocamqping"
pin-depends: [
["ag_logger.~dev" "git+https://github.com/argent-smith/ag_logger.git"]
]