From 40335815b33cd84e922da342182f9b5baee88840 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Fri, 16 Jan 2026 19:54:28 -0500 Subject: [PATCH] update trace.opam a bit --- dune-project | 8 +++++--- trace.opam | 8 ++++++-- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/dune-project b/dune-project index 25b6175..2c8eda2 100644 --- a/dune-project +++ b/dune-project @@ -20,7 +20,11 @@ (package (name trace) (synopsis - "A stub for tracing/observability, agnostic in how data is collected") + "A lightweight stub for tracing/observability, agnostic in how data is collected") + (description "ocaml-trace can be used to instrument libraries and programs with low overhead. + + It doesn't do any IO unless a collector is plugged in, which only + the final executable should do.") (depends (ocaml (>= 4.08)) @@ -28,8 +32,6 @@ (depopts hmap unix - (picos_aux - (>= 0.6)) (mtime (>= 2.0))) (tags diff --git a/trace.opam b/trace.opam index 3a18fd3..201623f 100644 --- a/trace.opam +++ b/trace.opam @@ -2,7 +2,12 @@ opam-version: "2.0" version: "0.10" synopsis: - "A stub for tracing/observability, agnostic in how data is collected" + "A lightweight stub for tracing/observability, agnostic in how data is collected" +description: """ +ocaml-trace can be used to instrument libraries and programs with low overhead. + + It doesn't do any IO unless a collector is plugged in, which only + the final executable should do.""" maintainer: ["Simon Cruanes"] authors: ["Simon Cruanes"] license: "MIT" @@ -17,7 +22,6 @@ depends: [ depopts: [ "hmap" "unix" - "picos_aux" {>= "0.6"} "mtime" {>= "2.0"} ] build: [