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 (package
(name trace) (name trace)
(synopsis (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 (depends
(ocaml (ocaml
(>= 4.08)) (>= 4.08))
@ -28,8 +32,6 @@
(depopts (depopts
hmap hmap
unix unix
(picos_aux
(>= 0.6))
(mtime (mtime
(>= 2.0))) (>= 2.0)))
(tags (tags

View file

@ -2,7 +2,12 @@
opam-version: "2.0" opam-version: "2.0"
version: "0.10" version: "0.10"
synopsis: 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"] maintainer: ["Simon Cruanes"]
authors: ["Simon Cruanes"] authors: ["Simon Cruanes"]
license: "MIT" license: "MIT"
@ -17,7 +22,6 @@ depends: [
depopts: [ depopts: [
"hmap" "hmap"
"unix" "unix"
"picos_aux" {>= "0.6"}
"mtime" {>= "2.0"} "mtime" {>= "2.0"}
] ]
build: [ build: [