mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-03-08 03:47:59 -04:00
Preparation for Cohttp 6 started in 2022 (https://github.com/mirage/ocaml-cohttp/blob/main/CHANGES.md#v600alpha0-2022-10-24) and 6 has been stable and released since Nov of 2024. See https://github.com/mirage/ocaml-cohttp/blob/main/CHANGES.md#v600-2024-11-21 Removal of the `open Cohttp_lwt` solves deprecation warnings issued by Cohttp 6, since everything we were using from the open has been moved into `Cohttp`.
40 lines
1 KiB
Text
40 lines
1 KiB
Text
# This file is generated by dune, edit dune-project instead
|
|
opam-version: "2.0"
|
|
version: "0.11.2"
|
|
synopsis: "Opentelemetry tracing for Cohttp HTTP servers"
|
|
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" {>= "4.08"}
|
|
"opentelemetry" {= version}
|
|
"opentelemetry-lwt" {= version}
|
|
"odoc" {with-doc}
|
|
"lwt" {>= "5.3"}
|
|
"cohttp-lwt" {>= "6.0.0"}
|
|
"alcotest" {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"
|