This repository has been archived by the owner on Aug 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
dune-project
105 lines (92 loc) · 1.73 KB
/
dune-project
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
(lang dune 2.9)
(name elastic-apm)
(license Apache-2.0)
(maintainers
"Hezekiah M. Carty <[email protected]>"
"Pete Hampton <[email protected]>"
"Anurag Soni <[email protected]>")
(authors
"Adam Ringwood <[email protected]>"
"Hezekiah M. Carty <[email protected]>"
"Pete Hampton <[email protected]>"
"Anurag Soni <[email protected]>")
(source
(github elastic/apm-agent-ocaml))
(generate_opam_files true)
(package
(name elastic-apm)
(synopsis "Elastic Application Performance Monitoring (APM) client library")
(depends
(ocaml
(>= 4.12.0))
hex
mtime
dune-configurator
dune-build-info
(ppx_expect :with-test)
ppx_yojson_conv
yojson
(ptime
(>= 0.8.5))))
(package
(name elastic-apm-lwt-reporter)
(depends
(ocaml
(>= 4.12.0))
lwt
cohttp-lwt-unix
(elastic-apm
(= :version))))
(package
(name elastic-apm-lwt-client)
(depends
(ocaml
(>= 4.12.0))
lwt
lwt_ppx
cohttp-lwt-unix
(elastic-apm
(= :version))
(elastic-apm-lwt-reporter
(= :version))))
(package
(name elastic-apm-async-reporter)
(depends
(ocaml
(>= 4.12.0))
(async
(< v0.15.0))
blue_http
(elastic-apm
(= :version))))
(package
(name elastic-apm-async-client)
(depends
(ocaml
(>= 4.12.0))
async
(elastic-apm
(= :version))
(elastic-apm-async-reporter
(= :version))))
(package
(name elastic-apm-logs-reporter)
(depends
(ocaml
(>= 4.12.0))
logs
(elastic-apm
(= :version))))
(package
(name elastic-apm-rock)
(synopsis "Rock middleware for Elastic APM")
(description "Application performance monitoring for rock services")
(depends
(ocaml
(>= 4.12.0))
rock
dune-build-info
rock
lwt_ppx
(elastic-apm-lwt-client
(= :version))))