this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix memtrace_viewer with dune 3.0.0 (#20815)

* Fix memtrace_viewer with dune 3.0.0

Dune 3.0.0 removed the --cache-transport argument and made direct the default:
https://github.com/ocaml/dune/pull/4493.

* memtrace_viewer.0.14.0 missing bound on js_of_ocaml

* memtrace_viewer.0.14.x: Apply suggestions from code review

* memtrace_viewer.0.14.x: add conflicts on re (due to vendoring)

Co-authored-by: Marcello Seri <mseri@users.noreply.github.com>

authored by

Simmo Saan
Marcello Seri
and committed by
GitHub
b84fdd30 f511d291

+12 -4
+7 -3
packages/memtrace_viewer/memtrace_viewer.v0.14.0/opam
··· 8 8 license: "MIT" 9 9 build: [ 10 10 ["dune" "build" "--profile" "release" "--default-target" "@install" "." 11 - "--root" "." "--cache-transport=direct"] 11 + "--root" "." "--cache-transport=direct" {dune < "3.0.0"}] 12 12 ["cp" "_build/default/memtrace_viewer.install" "."] 13 + ] 14 + conflicts: [ 15 + "sexplib0" {< "v0.14.0"} 16 + "re" {< "1.9.0"} 13 17 ] 14 18 depends: [ 15 19 "ocaml" {>= "4.11.0" & < "4.12"} ··· 24 28 "dune" {>= "2.7.1"} 25 29 "dune-configurator" {>= "2.7.1"} 26 30 "fmt" {>= "0.8.8"} 27 - "js_of_ocaml" {>= "3.7.0"} 28 - "js_of_ocaml-ppx" {>= "3.7.0"} 31 + "js_of_ocaml" {>= "3.7.0" & < "4.0.0"} 32 + "js_of_ocaml-ppx" {>= "3.7.0" & < "4.0.0"} 29 33 "jsonm" {>= "1.0.1"} 30 34 "lambdasoup" {>= "0.7.1"} 31 35 "logs" {>= "0.7.0"}
+5 -1
packages/memtrace_viewer/memtrace_viewer.v0.14.1/opam
··· 8 8 license: "MIT" 9 9 build: [ 10 10 ["dune" "build" "--profile" "release" "--default-target" "@install" "." 11 - "--root" "." "--cache-transport=direct"] 11 + "--root" "." "--cache-transport=direct" {dune < "3.0.0"}] 12 12 ["cp" "_build/default/memtrace_viewer.install" "."] 13 + ] 14 + conflicts: [ 15 + "sexplib0" {< "v0.14.0"} 16 + "re" {< "1.9.0"} 13 17 ] 14 18 depends: [ 15 19 "ocaml" {>= "4.11.0" & < "4.12"}