update trace.opam a bit

This commit is contained in:
Simon Cruanes 2026-01-16 19:54:28 -05:00
parent 481b5a10b2
commit 40335815b3
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
2 changed files with 11 additions and 5 deletions

View file

@ -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

View file

@ -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: [