remove dep on hmap

This commit is contained in:
Simon Cruanes 2026-01-17 22:39:32 -05:00
parent 44f87bdd6b
commit d91174cf32
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
2 changed files with 2 additions and 6 deletions

View file

@ -21,16 +21,13 @@
(name trace) (name trace)
(synopsis (synopsis
"A lightweight 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. (description
"ocaml-trace can be used to instrument libraries and programs with low overhead.\n\n It doesn't do any IO unless a collector is plugged in, which only\n the final executable should do.")
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))
dune) dune)
(depopts (depopts
hmap
unix unix
(mtime (mtime
(>= 2.0))) (>= 2.0)))

View file

@ -20,7 +20,6 @@ depends: [
"odoc" {with-doc} "odoc" {with-doc}
] ]
depopts: [ depopts: [
"hmap"
"unix" "unix"
"mtime" {>= "2.0"} "mtime" {>= "2.0"}
] ]