@grain/binaryen.ml 0.20.1 → 0.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. binaryen-archive/CHANGELOG.md +30 -0
  2. binaryen-archive/binaryen.opam +3 -3
  3. binaryen-archive/esy.lock/index.json +491 -426
  4. binaryen-archive/esy.lock/opam/{base.v0.15.1 → base.v0.16.1}/opam +7 -4
  5. binaryen-archive/esy.lock/opam/{chrome-trace.3.6.1 → chrome-trace.3.9.0}/opam +4 -4
  6. binaryen-archive/esy.lock/opam/{cmdliner.1.1.1 → cmdliner.1.2.0}/opam +2 -2
  7. binaryen-archive/esy.lock/opam/{csexp.1.5.1 → csexp.1.5.2}/opam +7 -9
  8. binaryen-archive/esy.lock/opam/{dune-build-info.3.6.1 → dune-build-info.3.9.0}/opam +4 -4
  9. binaryen-archive/esy.lock/opam/{dune-configurator.3.6.1 → dune-configurator.3.9.0}/opam +4 -4
  10. binaryen-archive/esy.lock/opam/{dune-rpc.3.6.1 → dune-rpc.3.9.0}/opam +4 -4
  11. binaryen-archive/esy.lock/opam/{dune.3.6.1 → dune.3.9.0}/opam +5 -5
  12. binaryen-archive/esy.lock/opam/{dyn.3.6.1 → dyn.3.9.0}/opam +4 -4
  13. binaryen-archive/esy.lock/opam/fiber.3.7.0/opam +39 -0
  14. binaryen-archive/esy.lock/opam/{fix.20220121 → fix.20230505}/opam +3 -3
  15. binaryen-archive/esy.lock/opam/gen.1.1/opam +31 -0
  16. binaryen-archive/esy.lock/opam/{js_of_ocaml-compiler.4.1.0 → js_of_ocaml-compiler.5.3.0}/opam +10 -10
  17. binaryen-archive/esy.lock/opam/{menhir.20220210 → menhir.20230608}/opam +4 -4
  18. binaryen-archive/esy.lock/opam/{menhirLib.20220210 → menhirLib.20230608}/opam +4 -4
  19. binaryen-archive/esy.lock/opam/{menhirSdk.20220210 → menhirSdk.20230608}/opam +4 -4
  20. binaryen-archive/esy.lock/opam/{ocamlbuild.0.14.2 → ocamlbuild.0.14.2+win}/opam +13 -14
  21. binaryen-archive/esy.lock/opam/ocamlfind.1.9.6/files/0001-Harden-test-for-OCaml-5.patch +12 -0
  22. binaryen-archive/esy.lock/opam/{ocamlfind.1.9.5 → ocamlfind.1.9.6}/opam +8 -7
  23. binaryen-archive/esy.lock/opam/{ocamlformat-rpc-lib.0.24.1 → ocamlformat-rpc-lib.0.25.1}/opam +4 -4
  24. binaryen-archive/esy.lock/opam/ocamlformat.0.24.1/opam +1 -1
  25. binaryen-archive/esy.lock/opam/{ordering.3.6.1 → ordering.3.9.0}/opam +4 -4
  26. binaryen-archive/esy.lock/opam/{ppx_yojson_conv_lib.v0.15.0 → ppx_yojson_conv_lib.v0.16.0}/opam +3 -3
  27. binaryen-archive/esy.lock/opam/{ppxlib.0.28.0 → ppxlib.0.29.1}/opam +5 -5
  28. binaryen-archive/esy.lock/opam/sedlex.3.2/opam +48 -0
  29. binaryen-archive/esy.lock/opam/{sexplib0.v0.15.1 → sexplib0.v0.16.0}/opam +3 -3
  30. binaryen-archive/esy.lock/opam/{stdio.v0.15.0 → stdio.v0.16.0}/opam +4 -4
  31. binaryen-archive/esy.lock/opam/{stdune.3.6.1 → stdune.3.9.0}/opam +4 -4
  32. binaryen-archive/esy.lock/opam/{topkg.1.0.6 → topkg.1.0.7}/opam +2 -2
  33. binaryen-archive/esy.lock/opam/{xdg.3.6.1 → xdg.3.9.0}/opam +4 -4
  34. binaryen-archive/esy.lock/opam/{yojson.2.0.2 → yojson.2.1.0}/opam +33 -23
  35. binaryen-archive/esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.2+win_opam_override/files/ocamlbuild-0.14.2.patch +0 -0
  36. binaryen-archive/esy.lock/overrides/opam__s__ocamlfind_opam__c__1.9.6_opam_override/files/findlib.patch +11 -0
  37. binaryen-archive/package.json +3 -3
  38. binaryen-archive/src/array_type.c +29 -0
  39. binaryen-archive/src/array_type.js +17 -0
  40. binaryen-archive/src/array_type.ml +8 -0
  41. binaryen-archive/src/array_type.mli +3 -0
  42. binaryen-archive/src/dune +38 -32
  43. binaryen-archive/src/{binaryen_stubs_exports.c → export.c} +0 -8
  44. binaryen-archive/src/{binaryen_stubs_expressions.c → expression.c} +0 -9
  45. binaryen-archive/src/{binaryen_stubs_functions.c → function.c} +0 -24
  46. binaryen-archive/src/{binaryen_stubs_globals.c → global.c} +0 -25
  47. binaryen-archive/src/heap_type.c +171 -0
  48. binaryen-archive/src/heap_type.js +131 -0
  49. binaryen-archive/src/heap_type.ml +11 -0
  50. binaryen-archive/src/heap_type.mli +11 -0
  51. binaryen-archive/src/{binaryen_stubs_literals.c → literal.c} +0 -9
  52. binaryen-archive/src/{binaryen_stubs_memory.c → memory.c} +15 -5
  53. binaryen-archive/src/{binaryen_stubs_memory.js → memory.js} +11 -1
  54. binaryen-archive/src/memory.ml +6 -3
  55. binaryen-archive/src/memory.mli +10 -1
  56. binaryen-archive/src/{binaryen_stubs_modules.c → module.c} +0 -9
  57. binaryen-archive/src/module.ml +4 -5
  58. binaryen-archive/src/module.mli +1 -1
  59. binaryen-archive/src/{binaryen_stubs_features.c → module_feature.c} +6 -6
  60. binaryen-archive/src/{binaryen_stubs_features.js → module_feature.js} +6 -6
  61. binaryen-archive/src/ocaml_helpers.c +87 -0
  62. binaryen-archive/src/ocaml_helpers.h +33 -0
  63. binaryen-archive/src/{binaryen_stubs_ops.c → op.c} +582 -325
  64. binaryen-archive/src/op.js +2123 -0
  65. binaryen-archive/src/op.ml +385 -344
  66. binaryen-archive/src/op.mli +38 -0
  67. binaryen-archive/src/passes.ml +30 -0
  68. binaryen-archive/src/passes.mli +30 -0
  69. binaryen-archive/src/signature_type.c +23 -0
  70. binaryen-archive/src/signature_type.js +11 -0
  71. binaryen-archive/src/signature_type.ml +5 -0
  72. binaryen-archive/src/signature_type.mli +2 -0
  73. binaryen-archive/src/struct_type.c +39 -0
  74. binaryen-archive/src/struct_type.js +23 -0
  75. binaryen-archive/src/struct_type.ml +11 -0
  76. binaryen-archive/src/struct_type.mli +4 -0
  77. binaryen-archive/src/{binaryen_stubs_tables.c → table.c} +0 -25
  78. binaryen-archive/src/{binaryen_stubs_types.c → type.c} +28 -10
  79. binaryen-archive/src/{binaryen_stubs_types.js → type.js} +28 -0
  80. binaryen-archive/src/type.ml +16 -0
  81. binaryen-archive/src/type.mli +4 -0
  82. binaryen-archive/test/test.expected +1 -1
  83. binaryen-archive/test/test.ml +11 -3
  84. binaryen-archive/esy.lock/opam/fiber.3.6.1/opam +0 -41
  85. binaryen-archive/esy.lock/opam/ocamlfind.1.9.5/files/0001-Fix-bug-when-installing-with-a-system-compiler.patch +0 -26
  86. binaryen-archive/esy.lock/overrides/opam__s__ocamlfind_opam__c__1.9.5_opam_override/files/findlib.patch +0 -485
  87. binaryen-archive/src/binaryen_stubs_heap_types.c +0 -95
  88. binaryen-archive/src/binaryen_stubs_heap_types.js +0 -65
  89. binaryen-archive/src/binaryen_stubs_ops.js +0 -1895
  90. /binaryen-archive/esy.lock/overrides/{opam__s__ocamlbuild_opam__c__0.14.2_opam_override → opam__s__ocamlbuild_opam__c__0.14.2+win_opam_override}/files/winpatch.patch +0 -0
  91. /binaryen-archive/esy.lock/overrides/{opam__s__ocamlbuild_opam__c__0.14.2_opam_override → opam__s__ocamlbuild_opam__c__0.14.2+win_opam_override}/package.json +0 -0
  92. /binaryen-archive/esy.lock/overrides/{opam__s__ocamlfind_opam__c__1.9.5_opam_override → opam__s__ocamlfind_opam__c__1.9.6_opam_override}/package.json +0 -0
  93. /binaryen-archive/src/{binaryen_stubs_exports.js → export.js} +0 -0
  94. /binaryen-archive/src/{binaryen_stubs_expressions.js → expression.js} +0 -0
  95. /binaryen-archive/src/{binaryen_stubs_functions.js → function.js} +0 -0
  96. /binaryen-archive/src/{binaryen_stubs_globals.js → global.js} +0 -0
  97. /binaryen-archive/src/{binaryen_stubs_imports.c → import.c} +0 -0
  98. /binaryen-archive/src/{binaryen_stubs_imports.js → import.js} +0 -0
  99. /binaryen-archive/src/{binaryen_stubs_literals.js → literal.js} +0 -0
  100. /binaryen-archive/src/{binaryen_stubs_modules.js → module.js} +0 -0
  101. /binaryen-archive/src/{binaryen_stubs_packed_types.c → packed_type.c} +0 -0
  102. /binaryen-archive/src/{binaryen_stubs_packed_types.js → packed_type.js} +0 -0
  103. /binaryen-archive/src/{binaryen_stubs_settings.c → settings.c} +0 -0
  104. /binaryen-archive/src/{binaryen_stubs_settings.js → settings.js} +0 -0
  105. /binaryen-archive/src/{binaryen_stubs_tables.js → table.js} +0 -0
  106. /binaryen-archive/src/{binaryen_stubs_type_system.c → type_system.c} +0 -0
  107. /binaryen-archive/src/{binaryen_stubs_type_system.js → type_system.js} +0 -0
@@ -10,8 +10,8 @@ build: [
10
10
  ["dune" "build" "-p" name "-j" jobs]
11
11
  ]
12
12
  depends: [
13
- "ocaml" {>= "4.10.0"}
14
- "sexplib0" {>= "v0.15" & < "v0.16"}
13
+ "ocaml" {>= "4.14.0"}
14
+ "sexplib0" {>= "v0.16" & < "v0.17"}
15
15
  "dune" {>= "2.0.0"}
16
16
  "dune-configurator"
17
17
  ]
@@ -31,6 +31,9 @@ provided by companion libraries such as stdio:
31
31
  https://github.com/janestreet/stdio
32
32
  "
33
33
  url {
34
- src: "https://github.com/janestreet/base/archive/refs/tags/v0.15.1.tar.gz"
35
- checksum: "sha256=755e303171ea267e3ba5af7aa8ea27537f3394d97c77d340b10f806d6ef61a14"
34
+ src: "https://github.com/janestreet/base/archive/refs/tags/v0.16.1.tar.gz"
35
+ checksum: [
36
+ "md5=ae1cc041c0f8ea3ca163bc904336e9aa"
37
+ "sha512=347ccc68be09ef207f0ac793f1c472688855ba53c317a35c95f7124be4105985b54f866b604a66a9d2e54bc320f7b29ffa3eb224622b1cce6ca504e1ee4888ff"
38
+ ]
36
39
  }
@@ -30,10 +30,10 @@ build: [
30
30
  ]
31
31
  ]
32
32
  url {
33
- src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
33
+ src: "https://github.com/ocaml/dune/releases/download/3.9.0/dune-3.9.0.tbz"
34
34
  checksum: [
35
- "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
36
- "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
35
+ "sha256=c4825a9de454aedf450c2db25ac353033e31d326a9d1b4b7a2cd7260639bd544"
36
+ "sha512=55d83bfee7c741cb5b74187674f9ef992ddf0b149f8d22a0a392c4c8ddf1075e9192eebd81cf36c115331cd96e10824100c6c338835d26c25e965e68ed94673d"
37
37
  ]
38
38
  }
39
- x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
39
+ x-commit-hash: "891fa5a7d72655634378425d51a1cf703ff93336"
@@ -33,7 +33,7 @@ install: [
33
33
  ]
34
34
  dev-repo: "git+https://erratique.ch/repos/cmdliner.git"
35
35
  url {
36
- src: "https://erratique.ch/software/cmdliner/releases/cmdliner-1.1.1.tbz"
36
+ src: "https://erratique.ch/software/cmdliner/releases/cmdliner-1.2.0.tbz"
37
37
  checksum:
38
- "sha512=5478ad833da254b5587b3746e3a8493e66e867a081ac0f653a901cc8a7d944f66e4387592215ce25d939be76f281c4785702f54d4a74b1700bc8838a62255c9e"
38
+ "sha512=6fcd6a59a6fbc6986b1aecdc3e4ce7a0dc43c65a16b427d6caa5504b10b51384f6b0bc703af646b09f5f1caeb6827b37d4480ce350ca8006204c850785f2810b"
39
39
  }
@@ -20,7 +20,7 @@ module of this library is parameterised by the type of S-expressions.
20
20
  maintainer: ["Jeremie Dimino <jeremie@dimino.org>"]
21
21
  authors: [
22
22
  "Quentin Hocquet <mefyl@gruntech.org>"
23
- "Jane Street Group, LLC"
23
+ "Jane Street Group, LLC <opensource@janestreet.com>"
24
24
  "Jeremie Dimino <jeremie@dimino.org>"
25
25
  ]
26
26
  license: "MIT"
@@ -28,9 +28,8 @@ homepage: "https://github.com/ocaml-dune/csexp"
28
28
  doc: "https://ocaml-dune.github.io/csexp/"
29
29
  bug-reports: "https://github.com/ocaml-dune/csexp/issues"
30
30
  depends: [
31
- "dune" {>= "1.11"}
31
+ "dune" {>= "3.4"}
32
32
  "ocaml" {>= "4.03.0"}
33
- # "ppx_expect" {with-test & >= "v0.14"}
34
33
  "odoc" {with-doc}
35
34
  ]
36
35
  dev-repo: "git+https://github.com/ocaml-dune/csexp.git"
@@ -44,17 +43,16 @@ build: [
44
43
  "-j"
45
44
  jobs
46
45
  "@install"
47
- # Tests disabled because of a cyclic dependency with csexp, dune-configurator and ppx_expect
48
- # "@runtest" {with-test}
46
+ # "@runtest" {with-test & ocaml:version >= "4.04"}
49
47
  "@doc" {with-doc}
50
48
  ]
51
49
  ]
52
- x-commit-hash: "7eeb86206819d2b1782d6cde1be9d6cf8b5fc851"
53
50
  url {
54
51
  src:
55
- "https://github.com/ocaml-dune/csexp/releases/download/1.5.1/csexp-1.5.1.tbz"
52
+ "https://github.com/ocaml-dune/csexp/releases/download/1.5.2/csexp-1.5.2.tbz"
56
53
  checksum: [
57
- "sha256=d605e4065fa90a58800440ef2f33a2d931398bf2c22061a8acb7df845c0aac02"
58
- "sha512=d785bbabaff9f6bf601399149ef0a42e5e99647b54e27f97ef1625907793dda22a45bf83e0e8a1eba2c63634c5484b54739ff0904ef556f5fc592efa38af7505"
54
+ "sha256=1a14dd04bb4379a41990248550628c77913a9c07f3c35c1370b6960e697787ff"
55
+ "sha512=be281018bcfc20d4db14894ef51c4b836d6338d2fdfe22e63d46f405f8dea7349e16f1c0ecd65f73d4c85a2a80e618cdbb8c9dafcbb9f229f04f1adca5b1973c"
59
56
  ]
60
57
  }
58
+ x-commit-hash: "e6c4768e10c61bcb04d09748744dad55602149c6"
@@ -36,10 +36,10 @@ build: [
36
36
  ]
37
37
  ]
38
38
  url {
39
- src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
39
+ src: "https://github.com/ocaml/dune/releases/download/3.9.0/dune-3.9.0.tbz"
40
40
  checksum: [
41
- "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
42
- "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
41
+ "sha256=c4825a9de454aedf450c2db25ac353033e31d326a9d1b4b7a2cd7260639bd544"
42
+ "sha512=55d83bfee7c741cb5b74187674f9ef992ddf0b149f8d22a0a392c4c8ddf1075e9192eebd81cf36c115331cd96e10824100c6c338835d26c25e965e68ed94673d"
43
43
  ]
44
44
  }
45
- x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
45
+ x-commit-hash: "891fa5a7d72655634378425d51a1cf703ff93336"
@@ -40,10 +40,10 @@ build: [
40
40
  ]
41
41
  ]
42
42
  url {
43
- src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
43
+ src: "https://github.com/ocaml/dune/releases/download/3.9.0/dune-3.9.0.tbz"
44
44
  checksum: [
45
- "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
46
- "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
45
+ "sha256=c4825a9de454aedf450c2db25ac353033e31d326a9d1b4b7a2cd7260639bd544"
46
+ "sha512=55d83bfee7c741cb5b74187674f9ef992ddf0b149f8d22a0a392c4c8ddf1075e9192eebd81cf36c115331cd96e10824100c6c338835d26c25e965e68ed94673d"
47
47
  ]
48
48
  }
49
- x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
49
+ x-commit-hash: "891fa5a7d72655634378425d51a1cf703ff93336"
@@ -34,10 +34,10 @@ build: [
34
34
  ]
35
35
  ]
36
36
  url {
37
- src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
37
+ src: "https://github.com/ocaml/dune/releases/download/3.9.0/dune-3.9.0.tbz"
38
38
  checksum: [
39
- "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
40
- "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
39
+ "sha256=c4825a9de454aedf450c2db25ac353033e31d326a9d1b4b7a2cd7260639bd544"
40
+ "sha512=55d83bfee7c741cb5b74187674f9ef992ddf0b149f8d22a0a392c4c8ddf1075e9192eebd81cf36c115331cd96e10824100c6c338835d26c25e965e68ed94673d"
41
41
  ]
42
42
  }
43
- x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
43
+ x-commit-hash: "891fa5a7d72655634378425d51a1cf703ff93336"
@@ -42,15 +42,15 @@ build: [
42
42
  depends: [
43
43
  # Please keep the lower bound in sync with .github/workflows/workflow.yml,
44
44
  # dune-project and min_ocaml_version in bootstrap.ml
45
- ("ocaml" {>= "4.08"} | ("ocaml" {< "4.08~~"} & "ocamlfind-secondary"))
45
+ ("ocaml" {>= "4.08"} | ("ocaml" {>= "4.02" & < "4.08~~"} & "ocamlfind-secondary"))
46
46
  "base-unix"
47
47
  "base-threads"
48
48
  ]
49
49
  url {
50
- src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
50
+ src: "https://github.com/ocaml/dune/releases/download/3.9.0/dune-3.9.0.tbz"
51
51
  checksum: [
52
- "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
53
- "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
52
+ "sha256=c4825a9de454aedf450c2db25ac353033e31d326a9d1b4b7a2cd7260639bd544"
53
+ "sha512=55d83bfee7c741cb5b74187674f9ef992ddf0b149f8d22a0a392c4c8ddf1075e9192eebd81cf36c115331cd96e10824100c6c338835d26c25e965e68ed94673d"
54
54
  ]
55
55
  }
56
- x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
56
+ x-commit-hash: "891fa5a7d72655634378425d51a1cf703ff93336"
@@ -31,10 +31,10 @@ build: [
31
31
  ]
32
32
  ]
33
33
  url {
34
- src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
34
+ src: "https://github.com/ocaml/dune/releases/download/3.9.0/dune-3.9.0.tbz"
35
35
  checksum: [
36
- "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
37
- "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
36
+ "sha256=c4825a9de454aedf450c2db25ac353033e31d326a9d1b4b7a2cd7260639bd544"
37
+ "sha512=55d83bfee7c741cb5b74187674f9ef992ddf0b149f8d22a0a392c4c8ddf1075e9192eebd81cf36c115331cd96e10824100c6c338835d26c25e965e68ed94673d"
38
38
  ]
39
39
  }
40
- x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
40
+ x-commit-hash: "891fa5a7d72655634378425d51a1cf703ff93336"
@@ -0,0 +1,39 @@
1
+ opam-version: "2.0"
2
+ synopsis: "Dune's monadic structured concurrency library"
3
+ maintainer: ["Jane Street Group, LLC <opensource@janestreet.com>"]
4
+ authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
5
+ license: "MIT"
6
+ homepage: "https://github.com/ocaml-dune/fiber"
7
+ bug-reports: "https://github.com/ocaml-dune/fiber/issues"
8
+ depends: [
9
+ "dune" {>= "3.6"}
10
+ "ocaml" {>= "4.08"}
11
+ "ppx_expect" {with-test}
12
+ "dyn"
13
+ "stdune"
14
+ "odoc" {with-doc}
15
+ ]
16
+ build: [
17
+ ["dune" "subst"] {dev}
18
+ [
19
+ "dune"
20
+ "build"
21
+ "-p"
22
+ name
23
+ "-j"
24
+ jobs
25
+ "@install"
26
+ "@runtest" {with-test & ocaml:version >= "4.13"}
27
+ "@doc" {with-doc}
28
+ ]
29
+ ]
30
+ dev-repo: "git+https://github.com/ocaml-dune/fiber.git"
31
+ url {
32
+ src:
33
+ "https://github.com/ocaml-dune/fiber/releases/download/3.7.0/fiber-lwt-3.7.0.tbz"
34
+ checksum: [
35
+ "sha256=8648a15ae93fe6942999ce36887429a3913b62829c4714e520cc0e7a1c3b9682"
36
+ "sha512=348b28b28ffd87de035e90753f677658e8ad58421caf3ac086e4c0bbab8508fa5fe2f55d137c425afaf790ebcf45291e16d70eac5cb766b6d9786f042b58b19b"
37
+ ]
38
+ }
39
+ x-commit-hash: "dd66893a530759da26b66bd1c8939fd77f369afb"
@@ -18,9 +18,9 @@ depends: [
18
18
  synopsis: "Algorithmic building blocks for memoization, recursion, and more"
19
19
  url {
20
20
  src:
21
- "https://gitlab.inria.fr/fpottier/fix/-/archive/20220121/archive.tar.gz"
21
+ "https://gitlab.inria.fr/fpottier/fix/-/archive/20230505/archive.tar.gz"
22
22
  checksum: [
23
- "md5=48d8a5bdff23cf7fbf9288877df2b6aa"
24
- "sha512=a851d8783c0c519c6e55359a5c471af433058872409c29a1a7bdfd0076813341ad2c0ebd1ce9e28bff4d4c729dfbc808c41c084fe12a42b45a2b5e391e77ccd2"
23
+ "md5=2a4afa633128c5010677222f7b3c9451"
24
+ "sha512=30d446ba6c19aef78b52d9831eb26f8f6ac10e88bd1eff36d16fbbfb32278b2637e31e63a160aec4abbbfdb1e7612ed25d68c936f4cbf2073e51d713ff3a8adf"
25
25
  ]
26
26
  }
@@ -0,0 +1,31 @@
1
+ opam-version: "2.0"
2
+ maintainer: "simon.cruanes.2007@m4x.org"
3
+ synopsis: "Iterators for OCaml, both restartable and consumable"
4
+ license: "BSD-2-Clause"
5
+ build: [
6
+ ["dune" "build" "@install" "-p" name "-j" jobs]
7
+ ["dune" "runtest" "-p" name "-j" jobs] {with-test}
8
+ ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
9
+ ]
10
+ depends: [
11
+ "dune" {>= "1.1"}
12
+ "seq"
13
+ "odoc" {with-doc}
14
+ "qcheck" {with-test}
15
+ "qtest" {with-test}
16
+ "ounit2" {with-test}
17
+ "ocaml" { >= "4.03.0" }
18
+ ]
19
+ tags: [ "gen" "iterator" "iter" "fold" ]
20
+ homepage: "https://github.com/c-cube/gen/"
21
+ doc: "https://c-cube.github.io/gen/"
22
+ bug-reports: "https://github.com/c-cube/gen/issues"
23
+ dev-repo: "git+https://github.com/c-cube/gen.git"
24
+ authors: ["Simon Cruanes" "ELLIOTTCABLE"]
25
+ url {
26
+ src: "https://github.com/c-cube/gen/archive/v1.1.tar.gz"
27
+ checksum: [
28
+ "md5=fa8066511b693815fe659fd022f4c6bc"
29
+ "sha512=71a4b5c3666a7c11935398a78feea7383f61d2c549dfb96e324d40783ffa87b5ec492c5ec468803aabfb9b48e7d0ebaa30b24d2b974540afc7cca5feea3121c1"
30
+ ]
31
+ }
@@ -4,19 +4,21 @@ description:
4
4
  "Js_of_ocaml is a compiler from OCaml bytecode to JavaScript. It makes it possible to run pure OCaml programs in JavaScript environment like browsers and Node.js"
5
5
  maintainer: ["Ocsigen team <dev@ocsigen.org>"]
6
6
  authors: ["Ocsigen team <dev@ocsigen.org>"]
7
- license:
8
- "GPL-2.0-or-later AND LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
7
+ license: [
8
+ "GPL-2.0-or-later" "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
9
+ ]
9
10
  homepage: "https://ocsigen.org/js_of_ocaml/latest/manual/overview"
10
11
  doc: "https://ocsigen.org/js_of_ocaml/latest/manual/overview"
11
12
  bug-reports: "https://github.com/ocsigen/js_of_ocaml/issues"
12
13
  depends: [
13
- "dune" {>= "3.2"}
14
- "ocaml" {>= "4.04" & < "5.1"}
14
+ "dune" {>= "3.7"}
15
+ "ocaml" {>= "4.08" & < "5.1"}
15
16
  "num" {with-test}
16
17
  "ppx_expect" {>= "v0.14.2" & with-test}
17
18
  "ppxlib" {>= "0.15.0"}
18
19
  "re" {with-test}
19
20
  "cmdliner" {>= "1.1.0"}
21
+ "sedlex" {>= "2.3"}
20
22
  "menhir"
21
23
  "menhirLib"
22
24
  "menhirSdk"
@@ -27,8 +29,6 @@ depopts: ["ocamlfind"]
27
29
  conflicts: [
28
30
  "ocamlfind" {< "1.5.1"}
29
31
  "js_of_ocaml" {< "3.0"}
30
- "ocaml-variants" {= "4.12.0+domains" | = "4.12.0+domains+effects"}
31
- "ocaml-option-bytecode-only"
32
32
  ]
33
33
  dev-repo: "git+https://github.com/ocsigen/js_of_ocaml.git"
34
34
  build: [
@@ -46,10 +46,10 @@ build: [
46
46
  ]
47
47
  url {
48
48
  src:
49
- "https://github.com/ocsigen/js_of_ocaml/releases/download/4.1.0/js_of_ocaml-4.1.0.tbz"
49
+ "https://github.com/ocsigen/js_of_ocaml/releases/download/5.3.0/js_of_ocaml-5.3.0.tbz"
50
50
  checksum: [
51
- "sha256=91793f29a5af3deaba3f7d35ceab11e739cfe0a5cc30556f6201461a6d4236ef"
52
- "sha512=43f91c1f37939dfc894558a23a8ca163e6f316db442bdd0a5909bd095f5b0eb596d0943883452f4b78641da71222a775476877ea9ba0500583700d1fb35e04a5"
51
+ "sha256=be9e3deeb98e5d28f1bcb2d9847c04d2885fc07ed58ccd8b08aa4b6628cd64d2"
52
+ "sha512=26ba67312747f63c1ab58e92a20fde635833275a56b0570c145e57c093a0412ea8dd6c1bce84a71fd321d76a4223b7e50843c4352f6515909ea1b0713b6cfe68"
53
53
  ]
54
54
  }
55
- x-commit-hash: "9cb30b78c1a4bde6176652b94c96b26e1140f8a4"
55
+ x-commit-hash: "7b2929f3e08375a859f13f31cf8d918b6e9455b7"
@@ -8,7 +8,7 @@ authors: [
8
8
  homepage: "http://gitlab.inria.fr/fpottier/menhir"
9
9
  dev-repo: "git+https://gitlab.inria.fr/fpottier/menhir.git"
10
10
  bug-reports: "https://gitlab.inria.fr/fpottier/menhir/-/issues"
11
- license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception"
11
+ license: "GPL-2.0-only"
12
12
  build: [
13
13
  ["dune" "build" "-p" name "-j" jobs]
14
14
  ]
@@ -21,9 +21,9 @@ depends: [
21
21
  synopsis: "An LR(1) parser generator"
22
22
  url {
23
23
  src:
24
- "https://gitlab.inria.fr/fpottier/menhir/-/archive/20220210/archive.tar.gz"
24
+ "https://gitlab.inria.fr/fpottier/menhir/-/archive/20230608/archive.tar.gz"
25
25
  checksum: [
26
- "md5=e3cef220f676c4b1c16cbccb174cefe3"
27
- "sha512=3063fec1d8b9fe092c8461b0689d426c7fe381a2bf3fd258dc42ceecca1719d32efbb8a18d94ada5555c38175ea352da3adbb239fdbcbcf52c3a5c85a4d9586f"
26
+ "md5=8ff26b1e3685c472b7b3aba2fe938a43"
27
+ "sha512=334b9dcb1283a28b8547082a89536b1d439ff588290b8eaecdf4802c5f74dbc8d16ad6fc6c0820036183518d83e2cc273a75787a8b41137424c8e7ee82e2b50a"
28
28
  ]
29
29
  }
@@ -8,7 +8,7 @@ authors: [
8
8
  homepage: "http://gitlab.inria.fr/fpottier/menhir"
9
9
  dev-repo: "git+https://gitlab.inria.fr/fpottier/menhir.git"
10
10
  bug-reports: "https://gitlab.inria.fr/fpottier/menhir/-/issues"
11
- license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception"
11
+ license: "LGPL-2.0-only with OCaml-LGPL-linking-exception"
12
12
  build: [
13
13
  ["dune" "build" "-p" name "-j" jobs]
14
14
  ]
@@ -22,9 +22,9 @@ conflicts: [
22
22
  synopsis: "Runtime support library for parsers generated by Menhir"
23
23
  url {
24
24
  src:
25
- "https://gitlab.inria.fr/fpottier/menhir/-/archive/20220210/archive.tar.gz"
25
+ "https://gitlab.inria.fr/fpottier/menhir/-/archive/20230608/archive.tar.gz"
26
26
  checksum: [
27
- "md5=e3cef220f676c4b1c16cbccb174cefe3"
28
- "sha512=3063fec1d8b9fe092c8461b0689d426c7fe381a2bf3fd258dc42ceecca1719d32efbb8a18d94ada5555c38175ea352da3adbb239fdbcbcf52c3a5c85a4d9586f"
27
+ "md5=8ff26b1e3685c472b7b3aba2fe938a43"
28
+ "sha512=334b9dcb1283a28b8547082a89536b1d439ff588290b8eaecdf4802c5f74dbc8d16ad6fc6c0820036183518d83e2cc273a75787a8b41137424c8e7ee82e2b50a"
29
29
  ]
30
30
  }
@@ -8,7 +8,7 @@ authors: [
8
8
  homepage: "http://gitlab.inria.fr/fpottier/menhir"
9
9
  dev-repo: "git+https://gitlab.inria.fr/fpottier/menhir.git"
10
10
  bug-reports: "https://gitlab.inria.fr/fpottier/menhir/-/issues"
11
- license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception"
11
+ license: "LGPL-2.0-only with OCaml-LGPL-linking-exception"
12
12
  build: [
13
13
  ["dune" "build" "-p" name "-j" jobs]
14
14
  ]
@@ -22,9 +22,9 @@ conflicts: [
22
22
  synopsis: "Compile-time library for auxiliary tools related to Menhir"
23
23
  url {
24
24
  src:
25
- "https://gitlab.inria.fr/fpottier/menhir/-/archive/20220210/archive.tar.gz"
25
+ "https://gitlab.inria.fr/fpottier/menhir/-/archive/20230608/archive.tar.gz"
26
26
  checksum: [
27
- "md5=e3cef220f676c4b1c16cbccb174cefe3"
28
- "sha512=3063fec1d8b9fe092c8461b0689d426c7fe381a2bf3fd258dc42ceecca1719d32efbb8a18d94ada5555c38175ea352da3adbb239fdbcbcf52c3a5c85a4d9586f"
27
+ "md5=8ff26b1e3685c472b7b3aba2fe938a43"
28
+ "sha512=334b9dcb1283a28b8547082a89536b1d439ff588290b8eaecdf4802c5f74dbc8d16ad6fc6c0820036183518d83e2cc273a75787a8b41137424c8e7ee82e2b50a"
29
29
  ]
30
30
  }
@@ -15,19 +15,12 @@ conflicts: [
15
15
  "ocamlfind" {< "1.6.2"}
16
16
  ]
17
17
  build: [
18
- [
19
- make
20
- "-f"
21
- "configure.make"
22
- "all"
23
- "OCAMLBUILD_PREFIX=%{prefix}%"
24
- "OCAMLBUILD_BINDIR=%{bin}%"
25
- "OCAMLBUILD_LIBDIR=%{lib}%"
26
- "OCAMLBUILD_MANDIR=%{man}%"
27
- "OCAML_NATIVE=%{ocaml:native}%"
28
- "OCAML_NATIVE_TOOLS=%{ocaml:native}%"
29
- ]
30
- [make "check-if-preinstalled" "all" "opam-install"]
18
+ [make "all"]
19
+ ]
20
+ install: [
21
+ [make "install"]
22
+ ["mkdir" "-p" "%{lib}%/ocamlbuild"]
23
+ ["install" "-m" "0644" "META" "%{lib}%/ocamlbuild"]
31
24
  ]
32
25
  dev-repo: "git+https://github.com/ocaml/ocamlbuild.git"
33
26
  url {
@@ -36,4 +29,10 @@ url {
36
29
  "md5=2f407fadd57b073155a6aead887d9676"
37
30
  "sha512=f568bf10431a1f701e8bd7554dc662400a0d978411038bbad93d44dceab02874490a8a5886a9b44e017347e7949997f13f5c3752f74e1eb5e273d2beb19a75fd"
38
31
  ]
39
- }
32
+ }
33
+ extra-source "ocamlbuild-0.14.2.patch" {
34
+ src: "https://raw.githubusercontent.com/ocaml-opam/opam-repository-mingw/354a87b397856f2a70024c5c83fc5001074935b6/packages/ocamlbuild/ocamlbuild.0.14.2/files/ocamlbuild-0.14.2.patch"
35
+ checksum: "sha256=a9b7e1829a3304e5a073d8ddea29d3d8272698e93b7e1ee659ae5e31e5cfb6b9"
36
+ }
37
+ patches: "ocamlbuild-0.14.2.patch"
38
+ available: os = "win32"
@@ -0,0 +1,12 @@
1
+ diff a/configure b/configure
2
+ --- a/configure
3
+ +++ b/configure
4
+ @@ -294,7 +294,7 @@
5
+ # If findlib has been configured -sitelib $(ocamlc -where) then there's
6
+ # nothing to do, but otherwise we need to put OCaml's Standard Library
7
+ # into the path setting.
8
+ - if [ ! -e "${ocaml_sitelib}/stdlib/META" ]; then
9
+ + if [ ! -e "${ocaml_sitelib}/stdlib.cmi" ]; then
10
+ ocamlpath="${ocaml_core_stdlib}${path_sep}${ocamlpath}"
11
+ fi
12
+ fi
@@ -13,7 +13,7 @@ authors: "Gerd Stolpmann <gerd@gerd-stolpmann.de>"
13
13
  homepage: "http://projects.camlcity.org/projects/findlib.html"
14
14
  bug-reports: "https://github.com/ocaml/ocamlfind/issues"
15
15
  depends: [
16
- "ocaml" {>= "4.00.0"}
16
+ "ocaml" {>= "3.08.0"}
17
17
  ]
18
18
  depopts: ["graphics"]
19
19
  build: [
@@ -34,14 +34,15 @@ install: [
34
34
  [make "install"]
35
35
  ["install" "-m" "0755" "ocaml-stub" "%{bin}%/ocaml"] {ocaml:preinstalled}
36
36
  ]
37
- extra-files: ["0001-Fix-bug-when-installing-with-a-system-compiler.patch" "md5=130d3d6fe399948ed7991b7756f50dc3"]
38
- patches: ["0001-Fix-bug-when-installing-with-a-system-compiler.patch"]
37
+ extra-files: ["0001-Harden-test-for-OCaml-5.patch" "md5=3cddbf72164c29d4e50e077a92a37c6c"]
38
+ # See https://github.com/ocaml/ocamlfind/pull/61
39
+ patches: ["0001-Harden-test-for-OCaml-5.patch"]
39
40
  dev-repo: "git+https://github.com/ocaml/ocamlfind.git"
40
41
  url {
41
- src: "http://download.camlcity.org/download/findlib-1.9.5.tar.gz"
42
+ src: "http://download.camlcity.org/download/findlib-1.9.6.tar.gz"
42
43
  checksum: [
43
- "md5=8b893525ce36cb3d4d4952483bcc7cf4"
44
- "sha512=03514c618a16b02889db997c6c4789b3436b3ad7d974348d2c6dea53eb78898ab285ce5f10297c074bab4fd2c82931a8b7c5c113b994447a44abb30fca74c715"
44
+ "md5=96c6ee50a32cca9ca277321262dbec57"
45
+ "sha512=cfaf1872d6ccda548f07d32cc6b90c3aafe136d2aa6539e03143702171ee0199add55269bba894c77115535dc46a5835901a5d7c75768999e72db503bfd83027"
45
46
  ]
46
47
  }
47
-
48
+ available: os != "win32"
@@ -30,10 +30,10 @@ build: [
30
30
  dev-repo: "git+https://github.com/ocaml-ppx/ocamlformat.git"
31
31
  url {
32
32
  src:
33
- "https://github.com/ocaml-ppx/ocamlformat/releases/download/0.24.1/ocamlformat-0.24.1.tbz"
33
+ "https://github.com/ocaml-ppx/ocamlformat/releases/download/0.25.1/ocamlformat-0.25.1.tbz"
34
34
  checksum: [
35
- "sha256=023425e9818f80ea50537b2371a4a766c149a9957d05807e88a004d2d5f441ce"
36
- "sha512=753b6128be68042895202f99959b360ce954db6f82b19b83b4bb346761a8e9cfdfc2b4b25e2070e60601b555562e78f9ebb02760ff127464e0b66cedbddca304"
35
+ "sha256=dc8f2a330ca3930b36cacb2623bb360ed8bdf6e4a8acd293dbd9e2241a6fd33d"
36
+ "sha512=b28f545425fb5375447c90022d065dc7fd51ed2f66d8c1f65a71a6ad2465d039a8686e8f18249e5ad3a2362fee6149c855ef30eb45fb9d06d743a53d26b3e26f"
37
37
  ]
38
38
  }
39
- x-commit-hash: "86938aa4435b251af1a3b081f7fbed90f982cf62"
39
+ x-commit-hash: "651f767b48e14ba6b24db9421306942d9e51adcc"
@@ -19,7 +19,7 @@ depends: [
19
19
  "menhir" {>= "20201216"}
20
20
  "menhirLib" {>= "20201216"}
21
21
  "menhirSdk" {>= "20201216"}
22
- "ocaml-version" {>= "3.3.0"}
22
+ "ocaml-version" {>= "3.3.0" & < "3.6.0"}
23
23
  "ocamlformat-rpc-lib" {with-test & = version}
24
24
  "ocp-indent"
25
25
  "odoc-parser" {>= "2.0.0" & < "3.0.0"}
@@ -29,10 +29,10 @@ build: [
29
29
  ]
30
30
  ]
31
31
  url {
32
- src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
32
+ src: "https://github.com/ocaml/dune/releases/download/3.9.0/dune-3.9.0.tbz"
33
33
  checksum: [
34
- "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
35
- "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
34
+ "sha256=c4825a9de454aedf450c2db25ac353033e31d326a9d1b4b7a2cd7260639bd544"
35
+ "sha512=55d83bfee7c741cb5b74187674f9ef992ddf0b149f8d22a0a392c4c8ddf1075e9192eebd81cf36c115331cd96e10824100c6c338835d26c25e965e68ed94673d"
36
36
  ]
37
37
  }
38
- x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
38
+ x-commit-hash: "891fa5a7d72655634378425d51a1cf703ff93336"
@@ -10,7 +10,7 @@ build: [
10
10
  ["dune" "build" "-p" name "-j" jobs]
11
11
  ]
12
12
  depends: [
13
- "ocaml" {>= "4.02.3"}
13
+ "ocaml" {>= "4.14.0"}
14
14
  "dune" {>= "2.0.0"}
15
15
  "yojson" {>= "1.7.0"}
16
16
  ]
@@ -19,6 +19,6 @@ description: "
19
19
  Part of the Jane Street's PPX rewriters collection.
20
20
  "
21
21
  url {
22
- src: "https://ocaml.janestreet.com/ocaml-core/v0.15/files/ppx_yojson_conv_lib-v0.15.0.tar.gz"
23
- checksum: "sha256=f9d2c5eff4566ec1f1f379b186ed22c8ddd6be0909a160bc5a9ac7abc6a6b684"
22
+ src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_yojson_conv_lib-v0.16.0.tar.gz"
23
+ checksum: "sha256=557c43c88d365b4cbb514d809f1eecc54d7b9976b0669bc55b02169e6c86ec7d"
24
24
  }
@@ -29,7 +29,7 @@ depends: [
29
29
  "ocamlfind" {with-test}
30
30
  "re" {with-test & >= "1.9.0"}
31
31
  "cinaps" {with-test & >= "v0.12.1"}
32
- "base" {with-test}
32
+ "base" {with-test & < "v0.16.0" }
33
33
  "stdio" {with-test}
34
34
  "odoc" {with-doc}
35
35
  ]
@@ -54,10 +54,10 @@ build: [
54
54
  dev-repo: "git+https://github.com/ocaml-ppx/ppxlib.git"
55
55
  url {
56
56
  src:
57
- "https://github.com/ocaml-ppx/ppxlib/releases/download/0.28.0/ppxlib-0.28.0.tbz"
57
+ "https://github.com/ocaml-ppx/ppxlib/releases/download/0.29.1/ppxlib-0.29.1.tbz"
58
58
  checksum: [
59
- "sha256=d87ae5f9a081206308ca964809b50a66aeb8e83d254801e8b9675448b60cf377"
60
- "sha512=03270d43e91485e63c7dc115a71933ffd8cb2910c273d605d2800fa69f523dcd4de1fbe31fd6c2f6979675c681343bcf4e35be06934565bf28edf4ea03f5da8e"
59
+ "sha256=c8ea8c8770414fdba6612e7f2d814b21a493daa974ea862a90c8e6c766e5dd79"
60
+ "sha512=edc468e9111cc26e31825e475fd72f55123a22fe86548e07e7d111796fecb8d60359b1b53c7eac383e5e2114cbae74dfd9c166f330e84cbeab4ddfd5797e322f"
61
61
  ]
62
62
  }
63
- x-commit-hash: "e027461818a8580e860e59d90ccae28f25cd40d4"
63
+ x-commit-hash: "36fcba0408b78963a730e0be92abdbab00b0ea26"
@@ -0,0 +1,48 @@
1
+ # This file is generated by dune, edit dune-project instead
2
+ opam-version: "2.0"
3
+ synopsis: "An OCaml lexer generator for Unicode"
4
+ description: """
5
+ sedlex is a lexer generator for OCaml. It is similar to ocamllex, but supports
6
+ Unicode. Unlike ocamllex, sedlex allows lexer specifications within regular
7
+ OCaml source files. Lexing specific constructs are provided via a ppx syntax
8
+ extension."""
9
+ maintainer: ["Alain Frisch <alain.frisch@lexifi.com>"]
10
+ authors: [
11
+ "Alain Frisch <alain.frisch@lexifi.com>"
12
+ "https://github.com/ocaml-community/sedlex/graphs/contributors"
13
+ ]
14
+ license: "MIT"
15
+ homepage: "https://github.com/ocaml-community/sedlex"
16
+ bug-reports: "https://github.com/ocaml-community/sedlex/issues"
17
+ depends: [
18
+ "ocaml" {>= "4.08"}
19
+ "dune" {>= "3.0"}
20
+ "ppxlib" {>= "0.26.0"}
21
+ "gen"
22
+ "ppx_expect" {with-test}
23
+ "odoc" {with-doc}
24
+ ]
25
+ build: [
26
+ ["dune" "subst"] {dev}
27
+ [
28
+ "dune"
29
+ "build"
30
+ "-p"
31
+ name
32
+ "-j"
33
+ jobs
34
+ "@install"
35
+ "@runtest" {with-test}
36
+ "@doc" {with-doc}
37
+ ]
38
+ ]
39
+ dev-repo: "git+https://github.com/ocaml-community/sedlex.git"
40
+ doc: "https://ocaml-community.github.io/sedlex/index.html"
41
+ url {
42
+ src:
43
+ "https://github.com/ocaml-community/sedlex/archive/refs/tags/v3.2.tar.gz"
44
+ checksum: [
45
+ "md5=b67eec3a80a7fed8e6c91e47260b0843"
46
+ "sha512=00e257d1b97e99d49028d2e38b20a05c6aa151c362991c37c17522bf58c19e273b762ea39dd9783ed9ecc60d11dadeabb0487e16b4af91536e45e7e18c86cfe9"
47
+ ]
48
+ }
@@ -10,7 +10,7 @@ build: [
10
10
  ["dune" "build" "-p" name "-j" jobs]
11
11
  ]
12
12
  depends: [
13
- "ocaml" {>= "4.08"}
13
+ "ocaml" {>= "4.08.0"}
14
14
  "dune" {>= "2.0.0"}
15
15
  ]
16
16
  synopsis: "Library containing the definition of S-expressions and some base converters"
@@ -21,6 +21,6 @@ OCaml's standard library that was developed by Jane Street, the
21
21
  largest industrial user of OCaml.
22
22
  "
23
23
  url {
24
- src: "https://github.com/janestreet/sexplib0/archive/refs/tags/v0.15.1.tar.gz"
25
- checksum: "md5=ab8fd6273f35a792cad48cbb3024a7f9"
24
+ src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexplib0-v0.16.0.tar.gz"
25
+ checksum: "sha256=86dba26468194512f789f2fb709063515a9cb4e5c4461c021c239a369590701d"
26
26
  }