Fix some dependencies

This commit is contained in:
Shon Feder 2025-05-21 19:46:29 -04:00
parent 3f3ec8afa9
commit fc7dece94b
No known key found for this signature in database
4 changed files with 11 additions and 23 deletions

View file

@ -79,12 +79,9 @@
(>= "4.08")) (>= "4.08"))
(opentelemetry (opentelemetry
(= :version)) (= :version))
(cohttp-lwt-unix :with-test) (cohttp-eio :with-test)
(odoc :with-doc) (odoc :with-doc)
(lwt eio
(>= "5.3"))
(lwt_ppx
(>= "2.0"))
(alcotest :with-test)) (alcotest :with-test))
(tags (tags
(instrumentation tracing opentelemetry datadog lwt))) (instrumentation tracing opentelemetry datadog lwt)))
@ -176,11 +173,7 @@
(opentelemetry (opentelemetry
(= :version)) (= :version))
(odoc :with-doc) (odoc :with-doc)
(lwt cohttp-eio
(>= "5.3")) eio_main
(lwt_ppx
(>= "2.0"))
cohttp-lwt
cohttp-lwt-unix
(alcotest :with-test)) (alcotest :with-test))
(synopsis "Collector client for opentelemetry, using cohttp + eio")) (synopsis "Collector client for opentelemetry, using cohttp + eio"))

View file

@ -17,10 +17,8 @@ depends: [
"mtime" {>= "1.4"} "mtime" {>= "1.4"}
"opentelemetry" {= version} "opentelemetry" {= version}
"odoc" {with-doc} "odoc" {with-doc}
"lwt" {>= "5.3"} "cohttp-eio"
"lwt_ppx" {>= "2.0"} "eio_main"
"cohttp-lwt"
"cohttp-lwt-unix"
"alcotest" {with-test} "alcotest" {with-test}
] ]
build: [ build: [

View file

@ -16,10 +16,9 @@ depends: [
"dune" {>= "2.9"} "dune" {>= "2.9"}
"ocaml" {>= "4.08"} "ocaml" {>= "4.08"}
"opentelemetry" {= version} "opentelemetry" {= version}
"cohttp-lwt-unix" {with-test} "cohttp-eio" {with-test}
"odoc" {with-doc} "odoc" {with-doc}
"lwt" {>= "5.3"} "eio"
"lwt_ppx" {>= "2.0"}
"alcotest" {with-test} "alcotest" {with-test}
] ]
build: [ build: [

View file

@ -2,13 +2,11 @@
(name opentelemetry_client_cohttp_eio) (name opentelemetry_client_cohttp_eio)
(public_name opentelemetry-client-cohttp-eio) (public_name opentelemetry-client-cohttp-eio)
(synopsis "Opentelemetry collector using cohttp+eio+unix") (synopsis "Opentelemetry collector using cohttp+eio+unix")
(preprocess
(pps lwt_ppx))
(libraries (libraries
opentelemetry opentelemetry
lwt eio
cohttp-lwt cohttp-eio
cohttp-lwt-unix eio_main
pbrt pbrt
mtime mtime
mtime.clock.os)) mtime.clock.os))