-
Notifications
You must be signed in to change notification settings - Fork 6
/
dune-project
90 lines (77 loc) · 1.42 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
(lang dune 2.9)
(name trace)
(generate_opam_files true)
(version 0.8)
(source
(github c-cube/ocaml-trace))
(authors "Simon Cruanes")
(maintainers "Simon Cruanes")
(license MIT)
;(documentation https://url/to/documentation)
(package
(name trace)
(synopsis
"A stub for tracing/observability, agnostic in how data is collected")
(depends
(ocaml
(>= 4.08))
dune)
(depopts
hmap
(mtime
(>= 2.0)))
(tags
(trace tracing observability profiling)))
(package
(name ppx_trace)
(synopsis "A ppx-based preprocessor for trace")
(depends
(ocaml
(>= 4.12)) ; we use __FUNCTION__
(ppxlib
(>= 0.28))
(trace
(= :version))
(trace-tef
(and
(= :version)
:with-test))
dune)
(depopts
(mtime (>= 2.0)))
(tags
(trace ppx)))
(package
(name trace-tef)
(synopsis
"A simple backend for trace, emitting Catapult/TEF JSON into a file")
(depends
(ocaml
(>= 4.08))
(trace
(= :version))
(mtime
(>= 2.0))
base-unix
dune)
(tags
(trace tracing catapult TEF chrome-format)))
(package
(name trace-fuchsia)
(synopsis
"A high-performance backend for trace, emitting a Fuchsia trace into a file")
(depends
(ocaml
(>= 4.08))
(trace
(= :version))
(mtime
(>= 2.0))
(thread-local-storage
(>= 0.2))
base-bigarray
base-unix
dune)
(tags
(trace tracing fuchsia)))
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project