mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-03-10 04:35:46 -04:00
use newer mirage-crypto-rng-eio
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
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.
This commit is contained in:
parent
31e9812b4f
commit
54dc4d0ef7
2 changed files with 2 additions and 2 deletions
|
|
@ -214,7 +214,7 @@
|
|||
(mtime
|
||||
(>= "1.4"))
|
||||
ca-certs
|
||||
mirage-crypto-rng-eio
|
||||
mirage-crypto-rng
|
||||
ambient-context-eio
|
||||
(opentelemetry
|
||||
(= :version))
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ depends: [
|
|||
"ocaml" {>= "5.00"}
|
||||
"mtime" {>= "1.4"}
|
||||
"ca-certs"
|
||||
"mirage-crypto-rng-eio"
|
||||
"mirage-crypto-rng"
|
||||
"ambient-context-eio"
|
||||
"opentelemetry" {= version}
|
||||
"opentelemetry-client" {= version}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue