this repo has no description
1opam-version: "2.0"
2synopsis:
3 "A lightweight library for dispatching and handling events, with a focus on metrics and instrumentation"
4description: """
5Telemetry is a lightweight library for dynamic dispatching of events, with a
6focus on metrics and instrumentation. Any OCaml library can use telemetry to
7emit events, then application code and other libraries can then hook into those
8events and run custom handlers."""
9maintainer: ["Leandro Ostera <leandro@abstractmachines.dev>"]
10authors: ["Leandro Ostera <leandro@abstractmachines.dev>"]
11license: "MIT"
12tags: ["topics" "telemetry" "events" "metrics" "instrumentation"]
13homepage: "https://github.com/leostera/telemetry"
14bug-reports: "https://github.com/leostera/telemetry/issues"
15depends: [
16 "ocaml" {>= "4.12.0"}
17 "dune" {>= "3.10"}
18 "odoc" {with-doc}
19]
20build: [
21 ["dune" "subst"] {dev}
22 [
23 "dune"
24 "build"
25 "-p"
26 name
27 "-j"
28 jobs
29 "@install"
30 "@runtest" {with-test}
31 "@doc" {with-doc}
32 ]
33]
34dev-repo: "git+https://github.com/leostera/telemetry.git"
35url {
36 src:
37 "https://github.com/leostera/telemetry/releases/download/0.0.1/telemetry-0.0.1.tbz"
38 checksum: [
39 "sha256=6047fbcc2fc5db3241b5035fc89d8ece72a6a05a3532cf4ed96822385921a76f"
40 "sha512=6cef9fdb2f7160051d77ca1a2d89c123f8f107b0c3f5e9b66feaefe630a7efe7be65e8e25f18906182ee922a1f8b1582c37ba432492a41450a70289ace2e7988"
41 ]
42}
43x-commit-hash: "ede1ca2a362b3795f7bf85590abf58792175851d"