mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-03-09 20:33:36 -04:00
chore: use dune 2.7 so that subst works (for the version field)
This commit is contained in:
parent
20cc772682
commit
06cbe55d11
5 changed files with 9 additions and 13 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
(lang dune 2.3)
|
(lang dune 2.7)
|
||||||
(name opentelemetry)
|
(name opentelemetry)
|
||||||
(generate_opam_files true)
|
(generate_opam_files true)
|
||||||
(source
|
(source
|
||||||
|
|
@ -16,7 +16,6 @@
|
||||||
(synopsis "Instrumentation for https://opentelemetry.io")
|
(synopsis "Instrumentation for https://opentelemetry.io")
|
||||||
(depends
|
(depends
|
||||||
(ocaml (>= "4.08"))
|
(ocaml (>= "4.08"))
|
||||||
(dune (>= "2.3"))
|
|
||||||
ptime
|
ptime
|
||||||
(odoc :with-doc)
|
(odoc :with-doc)
|
||||||
(ocaml-protoc (>= 2.1)))
|
(ocaml-protoc (>= 2.1)))
|
||||||
|
|
@ -28,7 +27,6 @@
|
||||||
(synopsis "Lwt-compatible instrumentation for https://opentelemetry.io")
|
(synopsis "Lwt-compatible instrumentation for https://opentelemetry.io")
|
||||||
(depends
|
(depends
|
||||||
(ocaml (>= "4.08"))
|
(ocaml (>= "4.08"))
|
||||||
(dune (>= "2.3"))
|
|
||||||
(opentelemetry (= :version))
|
(opentelemetry (= :version))
|
||||||
(odoc :with-doc)
|
(odoc :with-doc)
|
||||||
lwt)
|
lwt)
|
||||||
|
|
@ -39,7 +37,6 @@
|
||||||
(name opentelemetry-client-ocurl)
|
(name opentelemetry-client-ocurl)
|
||||||
(depends
|
(depends
|
||||||
(ocaml (>= "4.08"))
|
(ocaml (>= "4.08"))
|
||||||
(dune (>= "2.3"))
|
|
||||||
(mtime (>= "1.4")) ; for spans
|
(mtime (>= "1.4")) ; for spans
|
||||||
; atomic ; vendored
|
; atomic ; vendored
|
||||||
(opentelemetry (= :version))
|
(opentelemetry (= :version))
|
||||||
|
|
@ -52,7 +49,6 @@
|
||||||
(name opentelemetry-cohttp-lwt)
|
(name opentelemetry-cohttp-lwt)
|
||||||
(depends
|
(depends
|
||||||
(ocaml (>= "4.08"))
|
(ocaml (>= "4.08"))
|
||||||
(dune (>= "2.3"))
|
|
||||||
(opentelemetry (= :version))
|
(opentelemetry (= :version))
|
||||||
(opentelemetry-lwt (= :version))
|
(opentelemetry-lwt (= :version))
|
||||||
(odoc :with-doc)
|
(odoc :with-doc)
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@ homepage: "https://github.com/aestheticintegration/ocaml-opentelemetry"
|
||||||
bug-reports:
|
bug-reports:
|
||||||
"https://github.com/aestheticintegration/ocaml-opentelemetry/issues"
|
"https://github.com/aestheticintegration/ocaml-opentelemetry/issues"
|
||||||
depends: [
|
depends: [
|
||||||
|
"dune" {>= "2.7"}
|
||||||
"ocaml" {>= "4.08"}
|
"ocaml" {>= "4.08"}
|
||||||
"dune" {>= "2.3"}
|
|
||||||
"mtime" {>= "1.4"}
|
"mtime" {>= "1.4"}
|
||||||
"opentelemetry" {= version}
|
"opentelemetry" {= version}
|
||||||
"ocaml-protoc" {>= "2.1"}
|
"ocaml-protoc" {>= "2.1"}
|
||||||
|
|
@ -18,7 +18,7 @@ depends: [
|
||||||
"ocurl"
|
"ocurl"
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
["dune" "subst"] {pinned}
|
["dune" "subst"] {dev}
|
||||||
[
|
[
|
||||||
"dune"
|
"dune"
|
||||||
"build"
|
"build"
|
||||||
|
|
|
||||||
|
|
@ -9,15 +9,15 @@ homepage: "https://github.com/aestheticintegration/ocaml-opentelemetry"
|
||||||
bug-reports:
|
bug-reports:
|
||||||
"https://github.com/aestheticintegration/ocaml-opentelemetry/issues"
|
"https://github.com/aestheticintegration/ocaml-opentelemetry/issues"
|
||||||
depends: [
|
depends: [
|
||||||
|
"dune" {>= "2.7"}
|
||||||
"ocaml" {>= "4.08"}
|
"ocaml" {>= "4.08"}
|
||||||
"dune" {>= "2.3"}
|
|
||||||
"opentelemetry" {= version}
|
"opentelemetry" {= version}
|
||||||
"opentelemetry-lwt" {= version}
|
"opentelemetry-lwt" {= version}
|
||||||
"odoc" {with-doc}
|
"odoc" {with-doc}
|
||||||
"cohttp-lwt"
|
"cohttp-lwt"
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
["dune" "subst"] {pinned}
|
["dune" "subst"] {dev}
|
||||||
[
|
[
|
||||||
"dune"
|
"dune"
|
||||||
"build"
|
"build"
|
||||||
|
|
|
||||||
|
|
@ -10,14 +10,14 @@ homepage: "https://github.com/aestheticintegration/ocaml-opentelemetry"
|
||||||
bug-reports:
|
bug-reports:
|
||||||
"https://github.com/aestheticintegration/ocaml-opentelemetry/issues"
|
"https://github.com/aestheticintegration/ocaml-opentelemetry/issues"
|
||||||
depends: [
|
depends: [
|
||||||
|
"dune" {>= "2.7"}
|
||||||
"ocaml" {>= "4.08"}
|
"ocaml" {>= "4.08"}
|
||||||
"dune" {>= "2.3"}
|
|
||||||
"opentelemetry" {= version}
|
"opentelemetry" {= version}
|
||||||
"odoc" {with-doc}
|
"odoc" {with-doc}
|
||||||
"lwt"
|
"lwt"
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
["dune" "subst"] {pinned}
|
["dune" "subst"] {dev}
|
||||||
[
|
[
|
||||||
"dune"
|
"dune"
|
||||||
"build"
|
"build"
|
||||||
|
|
|
||||||
|
|
@ -10,14 +10,14 @@ homepage: "https://github.com/aestheticintegration/ocaml-opentelemetry"
|
||||||
bug-reports:
|
bug-reports:
|
||||||
"https://github.com/aestheticintegration/ocaml-opentelemetry/issues"
|
"https://github.com/aestheticintegration/ocaml-opentelemetry/issues"
|
||||||
depends: [
|
depends: [
|
||||||
|
"dune" {>= "2.7"}
|
||||||
"ocaml" {>= "4.08"}
|
"ocaml" {>= "4.08"}
|
||||||
"dune" {>= "2.3"}
|
|
||||||
"ptime"
|
"ptime"
|
||||||
"odoc" {with-doc}
|
"odoc" {with-doc}
|
||||||
"ocaml-protoc" {>= "2.1"}
|
"ocaml-protoc" {>= "2.1"}
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
["dune" "subst"] {pinned}
|
["dune" "subst"] {dev}
|
||||||
[
|
[
|
||||||
"dune"
|
"dune"
|
||||||
"build"
|
"build"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue