remove unused dep on thread-local-storage

This commit is contained in:
Simon Cruanes 2026-01-20 20:18:16 -05:00
parent 5751c1585c
commit 594a101922
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
3 changed files with 1 additions and 12 deletions

View file

@ -85,8 +85,6 @@
(= :version)) (= :version))
(mtime (mtime
(>= 2.0)) (>= 2.0))
(thread-local-storage
(>= 0.2))
base-bigarray base-bigarray
base-unix base-unix
dune) dune)

View file

@ -3,12 +3,4 @@
(public_name trace-fuchsia) (public_name trace-fuchsia)
(synopsis (synopsis
"A high-performance backend for trace, emitting a Fuchsia trace into a file") "A high-performance backend for trace, emitting a Fuchsia trace into a file")
(libraries (libraries trace.core trace.util bigarray mtime mtime.clock.os unix threads))
trace.core
trace.util
thread-local-storage
bigarray
mtime
mtime.clock.os
unix
threads))

View file

@ -13,7 +13,6 @@ depends: [
"ocaml" {>= "4.08"} "ocaml" {>= "4.08"}
"trace" {= version} "trace" {= version}
"mtime" {>= "2.0"} "mtime" {>= "2.0"}
"thread-local-storage" {>= "0.2"}
"base-bigarray" "base-bigarray"
"base-unix" "base-unix"
"dune" {>= "2.9"} "dune" {>= "2.9"}