mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-05-05 17:04:52 -04:00
fix opam
This commit is contained in:
parent
31cc90abb4
commit
7f9b7d7c83
5 changed files with 31 additions and 5 deletions
24
dune-project
24
dune-project
|
|
@ -31,6 +31,10 @@
|
||||||
hmap
|
hmap
|
||||||
(odoc :with-doc)
|
(odoc :with-doc)
|
||||||
(alcotest :with-test)
|
(alcotest :with-test)
|
||||||
|
(opentelemetry-client
|
||||||
|
(and
|
||||||
|
:with-test
|
||||||
|
(= :version)))
|
||||||
(pbrt
|
(pbrt
|
||||||
(and
|
(and
|
||||||
(>= 4.0)
|
(>= 4.0)
|
||||||
|
|
@ -107,7 +111,10 @@
|
||||||
(ezcurl
|
(ezcurl
|
||||||
(>= 0.2.3))
|
(>= 0.2.3))
|
||||||
ocurl
|
ocurl
|
||||||
(alcotest :with-test))
|
(alcotest :with-test)
|
||||||
|
(cohttp-lwt-unix :with-test)
|
||||||
|
(containers :with-test)
|
||||||
|
(logs :with-test))
|
||||||
(synopsis "Collector client for opentelemetry, using http + ezcurl"))
|
(synopsis "Collector client for opentelemetry, using http + ezcurl"))
|
||||||
|
|
||||||
(package
|
(package
|
||||||
|
|
@ -126,10 +133,14 @@
|
||||||
(>= 0.2.3))
|
(>= 0.2.3))
|
||||||
ocurl
|
ocurl
|
||||||
(lwt
|
(lwt
|
||||||
(>= "5.3"))
|
(>= "5.7.3"))
|
||||||
(lwt_ppx
|
(lwt_ppx
|
||||||
(>= "2.0"))
|
(>= "2.0"))
|
||||||
(alcotest :with-test))
|
ambient-context-lwt
|
||||||
|
(alcotest :with-test)
|
||||||
|
(cohttp-lwt-unix :with-test)
|
||||||
|
(containers :with-test)
|
||||||
|
(logs :with-test))
|
||||||
(synopsis "Collector client for opentelemetry, using ezcurl-lwt"))
|
(synopsis "Collector client for opentelemetry, using ezcurl-lwt"))
|
||||||
|
|
||||||
(package
|
(package
|
||||||
|
|
@ -227,5 +238,10 @@
|
||||||
(>= 2.0.1))
|
(>= 2.0.1))
|
||||||
(alcotest :with-test)
|
(alcotest :with-test)
|
||||||
(containers :with-test)
|
(containers :with-test)
|
||||||
(cohttp-lwt-unix :with-test))
|
(cohttp-lwt-unix :with-test)
|
||||||
|
(logs :with-test)
|
||||||
|
(opentelemetry-lwt
|
||||||
|
(and
|
||||||
|
:with-test
|
||||||
|
(= :version))))
|
||||||
(synopsis "Collector client for opentelemetry, using cohttp + eio"))
|
(synopsis "Collector client for opentelemetry, using cohttp + eio"))
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,8 @@ depends: [
|
||||||
"alcotest" {with-test}
|
"alcotest" {with-test}
|
||||||
"containers" {with-test}
|
"containers" {with-test}
|
||||||
"cohttp-lwt-unix" {with-test}
|
"cohttp-lwt-unix" {with-test}
|
||||||
|
"logs" {with-test}
|
||||||
|
"opentelemetry-lwt" {with-test & = version}
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
["dune" "subst"] {dev}
|
["dune" "subst"] {dev}
|
||||||
|
|
|
||||||
|
|
@ -16,9 +16,13 @@ depends: [
|
||||||
"odoc" {with-doc}
|
"odoc" {with-doc}
|
||||||
"ezcurl-lwt" {>= "0.2.3"}
|
"ezcurl-lwt" {>= "0.2.3"}
|
||||||
"ocurl"
|
"ocurl"
|
||||||
"lwt" {>= "5.3"}
|
"lwt" {>= "5.7.3"}
|
||||||
"lwt_ppx" {>= "2.0"}
|
"lwt_ppx" {>= "2.0"}
|
||||||
|
"ambient-context-lwt"
|
||||||
"alcotest" {with-test}
|
"alcotest" {with-test}
|
||||||
|
"cohttp-lwt-unix" {with-test}
|
||||||
|
"containers" {with-test}
|
||||||
|
"logs" {with-test}
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
["dune" "subst"] {dev}
|
["dune" "subst"] {dev}
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,9 @@ depends: [
|
||||||
"ezcurl" {>= "0.2.3"}
|
"ezcurl" {>= "0.2.3"}
|
||||||
"ocurl"
|
"ocurl"
|
||||||
"alcotest" {with-test}
|
"alcotest" {with-test}
|
||||||
|
"cohttp-lwt-unix" {with-test}
|
||||||
|
"containers" {with-test}
|
||||||
|
"logs" {with-test}
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
["dune" "subst"] {dev}
|
["dune" "subst"] {dev}
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@ depends: [
|
||||||
"hmap"
|
"hmap"
|
||||||
"odoc" {with-doc}
|
"odoc" {with-doc}
|
||||||
"alcotest" {with-test}
|
"alcotest" {with-test}
|
||||||
|
"opentelemetry-client" {with-test & = version}
|
||||||
"pbrt" {>= "4.0" & < "5.0"}
|
"pbrt" {>= "4.0" & < "5.0"}
|
||||||
"pbrt_yojson" {>= "4.0" & < "5.0"}
|
"pbrt_yojson" {>= "4.0" & < "5.0"}
|
||||||
"ambient-context" {>= "0.2"}
|
"ambient-context" {>= "0.2"}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue