mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-03-10 04:35:46 -04:00
Some checks are pending
format / format (push) Waiting to run
build / build (4.08.x, ubuntu-latest) (push) Waiting to run
build / build (4.13.x, ubuntu-latest) (push) Waiting to run
build / build (5.0.x, ubuntu-latest) (push) Waiting to run
build / build (5.3.x, ubuntu-latest) (push) Waiting to run
Although I don't know why, mirage-crypo-rng package of >= 2.0.0 is released but mirage-crypto-rng-eio is not (it's stuck at 1.2.0). cf. https://opam.ocaml.org/packages/mirage-crypto-rng/mirage-crypto-rng.2.0.3/ cf. https://opam.ocaml.org/packages/mirage-crypto-rng-eio/mirage-crypto-rng-eio.1.2.0/ Currently, ocaml-opentelemetry depends on mirage-crypto-rng-eio, so those who want to use mirage-crypto-rng >= 2.0.0 (like me) can't use ocaml-opentelemetry. This commit fixes this problem by replacing mirage-crypto-rng-eio with mirage-crypto-rng in dune-project (thus in opentelemetry-client-cohttp-eio.opam) to make ocaml-opentelemetry depend on mirage-crypto-rng instead of mirage-crypto-rng-eio.
47 lines
1.2 KiB
Text
47 lines
1.2 KiB
Text
# This file is generated by dune, edit dune-project instead
|
|
opam-version: "2.0"
|
|
version: "0.12"
|
|
synopsis: "Collector client for opentelemetry, using cohttp + eio"
|
|
maintainer: [
|
|
"Simon Cruanes <simon.cruanes.2007@m4x.org>"
|
|
"Matt Bray <mattjbray@gmail.com>"
|
|
"ELLIOTTCABLE <opam@ell.io>"
|
|
]
|
|
authors: ["the Imandra team and contributors"]
|
|
license: "MIT"
|
|
homepage: "https://github.com/imandra-ai/ocaml-opentelemetry"
|
|
bug-reports: "https://github.com/imandra-ai/ocaml-opentelemetry/issues"
|
|
depends: [
|
|
"dune" {>= "2.9"}
|
|
"ocaml" {>= "5.00"}
|
|
"mtime" {>= "1.4"}
|
|
"ca-certs"
|
|
"mirage-crypto-rng"
|
|
"ambient-context-eio"
|
|
"opentelemetry" {= version}
|
|
"opentelemetry-client" {= version}
|
|
"odoc" {with-doc}
|
|
"cohttp-eio" {>= "6.1.0"}
|
|
"eio_main" {with-test}
|
|
"tls-eio" {>= "2.0.1"}
|
|
"alcotest" {with-test}
|
|
"containers" {with-test}
|
|
"cohttp-lwt-unix" {with-test}
|
|
]
|
|
build: [
|
|
["dune" "subst"] {dev}
|
|
[
|
|
"dune"
|
|
"build"
|
|
"-p"
|
|
name
|
|
"-j"
|
|
jobs
|
|
"--promote-install-files=false"
|
|
"@install"
|
|
"@runtest" {with-test}
|
|
"@doc" {with-doc}
|
|
]
|
|
["dune" "install" "-p" name "--create-install-files" name]
|
|
]
|
|
dev-repo: "git+https://github.com/imandra-ai/ocaml-opentelemetry.git"
|