@grain/binaryen.ml 0.19.0 → 0.20.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 (68) hide show
  1. binaryen-archive/CHANGELOG.md +38 -0
  2. binaryen-archive/README.md +0 -16
  3. binaryen-archive/binaryen.opam +5 -5
  4. binaryen-archive/dune-project +1 -1
  5. binaryen-archive/dune-workspace +1 -1
  6. binaryen-archive/esy.lock/index.json +285 -290
  7. binaryen-archive/esy.lock/opam/{base.v0.14.3 → base.v0.15.1}/opam +4 -4
  8. binaryen-archive/esy.lock/opam/{chrome-trace.3.5.0 → chrome-trace.3.6.1}/opam +5 -5
  9. binaryen-archive/esy.lock/opam/{dune-build-info.3.5.0 → dune-build-info.3.6.1}/opam +6 -6
  10. binaryen-archive/esy.lock/opam/{dune-configurator.3.5.0 → dune-configurator.3.6.1}/opam +5 -5
  11. binaryen-archive/esy.lock/opam/{dune-rpc.3.5.0 → dune-rpc.3.6.1}/opam +5 -5
  12. binaryen-archive/esy.lock/opam/{dune.3.5.0 → dune.3.6.1}/opam +6 -6
  13. binaryen-archive/esy.lock/opam/{dyn.3.5.0 → dyn.3.6.1}/opam +5 -5
  14. binaryen-archive/esy.lock/opam/{fiber.3.5.0 → fiber.3.6.1}/opam +5 -5
  15. binaryen-archive/esy.lock/opam/{js_of_ocaml-compiler.4.0.0 → js_of_ocaml-compiler.4.1.0}/opam +9 -10
  16. binaryen-archive/esy.lock/opam/menhir.20220210/opam +1 -1
  17. binaryen-archive/esy.lock/opam/menhirLib.20220210/opam +1 -1
  18. binaryen-archive/esy.lock/opam/menhirSdk.20220210/opam +1 -1
  19. binaryen-archive/esy.lock/opam/{ocaml-lsp-server.1.14.1 → ocaml-lsp-server.1.12.4}/opam +5 -5
  20. binaryen-archive/esy.lock/opam/{ocamlformat.0.20.1 → ocamlformat.0.24.1}/opam +12 -12
  21. binaryen-archive/esy.lock/opam/{odoc-parser.1.0.1 → odoc-parser.2.0.0}/opam +4 -4
  22. binaryen-archive/esy.lock/opam/{ordering.3.5.0 → ordering.3.6.1}/opam +5 -5
  23. binaryen-archive/esy.lock/opam/{sexplib0.v0.14.0 → sexplib0.v0.15.1}/opam +3 -3
  24. binaryen-archive/esy.lock/opam/{stdio.v0.14.0 → stdio.v0.15.0}/opam +4 -4
  25. binaryen-archive/esy.lock/opam/{stdune.3.5.0 → stdune.3.6.1}/opam +5 -5
  26. binaryen-archive/esy.lock/opam/{topkg.1.0.5 → topkg.1.0.6}/opam +22 -19
  27. binaryen-archive/esy.lock/opam/{xdg.3.5.0 → xdg.3.6.1}/opam +5 -5
  28. binaryen-archive/package.json +8 -8
  29. binaryen-archive/src/binaryen_stubs_expressions.c +43 -33
  30. binaryen-archive/src/binaryen_stubs_expressions.js +221 -42
  31. binaryen-archive/src/binaryen_stubs_features.c +6 -0
  32. binaryen-archive/src/binaryen_stubs_features.js +6 -0
  33. binaryen-archive/src/binaryen_stubs_heap_types.c +95 -0
  34. binaryen-archive/src/binaryen_stubs_heap_types.js +65 -0
  35. binaryen-archive/src/binaryen_stubs_imports.c +8 -6
  36. binaryen-archive/src/binaryen_stubs_imports.js +6 -6
  37. binaryen-archive/src/binaryen_stubs_memory.c +55 -16
  38. binaryen-archive/src/binaryen_stubs_memory.js +64 -15
  39. binaryen-archive/src/binaryen_stubs_modules.c +8 -6
  40. binaryen-archive/src/binaryen_stubs_modules.js +6 -6
  41. binaryen-archive/src/binaryen_stubs_packed_types.c +26 -0
  42. binaryen-archive/src/binaryen_stubs_packed_types.js +17 -0
  43. binaryen-archive/src/binaryen_stubs_type_system.c +40 -0
  44. binaryen-archive/src/binaryen_stubs_type_system.js +29 -0
  45. binaryen-archive/src/binaryen_stubs_types.c +44 -0
  46. binaryen-archive/src/binaryen_stubs_types.js +36 -0
  47. binaryen-archive/src/dune +35 -12
  48. binaryen-archive/src/expression.ml +21 -24
  49. binaryen-archive/src/expression.mli +9 -9
  50. binaryen-archive/src/heap_type.ml +15 -0
  51. binaryen-archive/src/heap_type.mli +12 -0
  52. binaryen-archive/src/import.ml +4 -2
  53. binaryen-archive/src/import.mli +2 -2
  54. binaryen-archive/src/memory.ml +19 -5
  55. binaryen-archive/src/memory.mli +9 -10
  56. binaryen-archive/src/module.ml +12 -2
  57. binaryen-archive/src/module.mli +3 -2
  58. binaryen-archive/src/ocaml_helpers.h +1 -0
  59. binaryen-archive/src/packed_type.ml +13 -0
  60. binaryen-archive/src/packed_type.mli +5 -0
  61. binaryen-archive/src/type.ml +19 -0
  62. binaryen-archive/src/type.mli +7 -0
  63. binaryen-archive/src/type_system.ml +7 -0
  64. binaryen-archive/src/type_system.mli +7 -0
  65. binaryen-archive/test/dune +19 -20
  66. binaryen-archive/test/test.expected +29 -5
  67. binaryen-archive/test/test.ml +33 -15
  68. binaryen-archive/esy.lock/overrides/opam__s__js__of__ocaml_compiler_opam__c__4.0.0_opam_override/package.json +0 -3
@@ -10,8 +10,8 @@ build: [
10
10
  ["dune" "build" "-p" name "-j" jobs]
11
11
  ]
12
12
  depends: [
13
- "ocaml" {>= "4.08.0"}
14
- "sexplib0" {>= "v0.14" & < "v0.15"}
13
+ "ocaml" {>= "4.10.0"}
14
+ "sexplib0" {>= "v0.15" & < "v0.16"}
15
15
  "dune" {>= "2.0.0"}
16
16
  "dune-configurator"
17
17
  ]
@@ -31,6 +31,6 @@ 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/v0.14.3.tar.gz"
35
- checksum: "sha256=e34dc0dd052a386c84f5f67e71a90720dff76e0edd01f431604404bee86ebe5a"
34
+ src: "https://github.com/janestreet/base/archive/refs/tags/v0.15.1.tar.gz"
35
+ checksum: "sha256=755e303171ea267e3ba5af7aa8ea27537f3394d97c77d340b10f806d6ef61a14"
36
36
  }
@@ -9,7 +9,7 @@ homepage: "https://github.com/ocaml/dune"
9
9
  doc: "https://dune.readthedocs.io/"
10
10
  bug-reports: "https://github.com/ocaml/dune/issues"
11
11
  depends: [
12
- "dune" {>= "3.3"}
12
+ "dune" {>= "3.5"}
13
13
  "ocaml" {>= "4.08.0"}
14
14
  "odoc" {with-doc}
15
15
  ]
@@ -30,10 +30,10 @@ build: [
30
30
  ]
31
31
  ]
32
32
  url {
33
- src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
33
+ src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
34
34
  checksum: [
35
- "sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
36
- "sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
35
+ "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
36
+ "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
37
37
  ]
38
38
  }
39
- x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
39
+ x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
@@ -1,5 +1,5 @@
1
1
  opam-version: "2.0"
2
- synopsis: "Embed build informations inside executable"
2
+ synopsis: "Embed build information inside executable"
3
3
  description: """
4
4
  The build-info library allows to access information about how the
5
5
  executable was built, such as the version of the project at which it
@@ -15,7 +15,7 @@ homepage: "https://github.com/ocaml/dune"
15
15
  doc: "https://dune.readthedocs.io/"
16
16
  bug-reports: "https://github.com/ocaml/dune/issues"
17
17
  depends: [
18
- "dune" {>= "3.3"}
18
+ "dune" {>= "3.5"}
19
19
  "ocaml" {>= "4.08"}
20
20
  "odoc" {with-doc}
21
21
  ]
@@ -36,10 +36,10 @@ build: [
36
36
  ]
37
37
  ]
38
38
  url {
39
- src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
39
+ src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
40
40
  checksum: [
41
- "sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
42
- "sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
41
+ "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
42
+ "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
43
43
  ]
44
44
  }
45
- x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
45
+ x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
@@ -17,7 +17,7 @@ homepage: "https://github.com/ocaml/dune"
17
17
  doc: "https://dune.readthedocs.io/"
18
18
  bug-reports: "https://github.com/ocaml/dune/issues"
19
19
  depends: [
20
- "dune" {>= "3.3"}
20
+ "dune" {>= "3.5"}
21
21
  "ocaml" {>= "4.04.0"}
22
22
  "base-unix"
23
23
  "csexp" {>= "1.5.0"}
@@ -40,10 +40,10 @@ build: [
40
40
  ]
41
41
  ]
42
42
  url {
43
- src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
43
+ src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
44
44
  checksum: [
45
- "sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
46
- "sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
45
+ "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
46
+ "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
47
47
  ]
48
48
  }
49
- x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
49
+ x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
@@ -8,7 +8,7 @@ homepage: "https://github.com/ocaml/dune"
8
8
  doc: "https://dune.readthedocs.io/"
9
9
  bug-reports: "https://github.com/ocaml/dune/issues"
10
10
  depends: [
11
- "dune" {>= "3.3"}
11
+ "dune" {>= "3.5"}
12
12
  "csexp"
13
13
  "ordering"
14
14
  "dyn"
@@ -34,10 +34,10 @@ build: [
34
34
  ]
35
35
  ]
36
36
  url {
37
- src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
37
+ src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
38
38
  checksum: [
39
- "sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
40
- "sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
39
+ "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
40
+ "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
41
41
  ]
42
42
  }
43
- x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
43
+ x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
@@ -36,8 +36,8 @@ conflicts: [
36
36
  ]
37
37
  dev-repo: "git+https://github.com/ocaml/dune.git"
38
38
  build: [
39
- ["ocaml" "bootstrap.ml" "-j" jobs]
40
- ["./dune.exe" "build" "dune.install" "--release" "--profile" "dune-bootstrap" "-j" jobs]
39
+ ["ocaml" "boot/bootstrap.ml" "-j" jobs]
40
+ ["./_boot/dune.exe" "build" "dune.install" "--release" "--profile" "dune-bootstrap" "-j" jobs]
41
41
  ]
42
42
  depends: [
43
43
  # Please keep the lower bound in sync with .github/workflows/workflow.yml,
@@ -47,10 +47,10 @@ depends: [
47
47
  "base-threads"
48
48
  ]
49
49
  url {
50
- src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
50
+ src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
51
51
  checksum: [
52
- "sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
53
- "sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
52
+ "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
53
+ "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
54
54
  ]
55
55
  }
56
- x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
56
+ x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
@@ -8,7 +8,7 @@ homepage: "https://github.com/ocaml/dune"
8
8
  doc: "https://dune.readthedocs.io/"
9
9
  bug-reports: "https://github.com/ocaml/dune/issues"
10
10
  depends: [
11
- "dune" {>= "3.3"}
11
+ "dune" {>= "3.5"}
12
12
  "ocaml" {>= "4.08.0"}
13
13
  "ordering" {= version}
14
14
  "pp" {>= "1.1.0"}
@@ -31,10 +31,10 @@ build: [
31
31
  ]
32
32
  ]
33
33
  url {
34
- src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
34
+ src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
35
35
  checksum: [
36
- "sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
37
- "sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
36
+ "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
37
+ "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
38
38
  ]
39
39
  }
40
- x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
40
+ x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
@@ -9,7 +9,7 @@ homepage: "https://github.com/ocaml/dune"
9
9
  doc: "https://dune.readthedocs.io/"
10
10
  bug-reports: "https://github.com/ocaml/dune/issues"
11
11
  depends: [
12
- "dune" {>= "3.3"}
12
+ "dune" {>= "3.5"}
13
13
  "ocaml" {>= "4.08.0"}
14
14
  "stdune" {= version}
15
15
  "dyn" {= version}
@@ -32,10 +32,10 @@ build: [
32
32
  ]
33
33
  ]
34
34
  url {
35
- src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
35
+ src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
36
36
  checksum: [
37
- "sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
38
- "sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
37
+ "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
38
+ "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
39
39
  ]
40
40
  }
41
- x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
41
+ x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
@@ -10,13 +10,13 @@ homepage: "https://ocsigen.org/js_of_ocaml/latest/manual/overview"
10
10
  doc: "https://ocsigen.org/js_of_ocaml/latest/manual/overview"
11
11
  bug-reports: "https://github.com/ocsigen/js_of_ocaml/issues"
12
12
  depends: [
13
- "dune" {>= "2.9"}
14
- "ocaml" {>= "4.04" & < "4.15"}
13
+ "dune" {>= "3.2"}
14
+ "ocaml" {>= "4.04" & < "5.1"}
15
15
  "num" {with-test}
16
16
  "ppx_expect" {>= "v0.14.2" & with-test}
17
17
  "ppxlib" {>= "0.15.0"}
18
18
  "re" {with-test}
19
- "cmdliner" {>= "1.0.0"}
19
+ "cmdliner" {>= "1.1.0"}
20
20
  "menhir"
21
21
  "menhirLib"
22
22
  "menhirSdk"
@@ -27,7 +27,8 @@ depopts: ["ocamlfind"]
27
27
  conflicts: [
28
28
  "ocamlfind" {< "1.5.1"}
29
29
  "js_of_ocaml" {< "3.0"}
30
- "base-domains"
30
+ "ocaml-variants" {= "4.12.0+domains" | = "4.12.0+domains+effects"}
31
+ "ocaml-option-bytecode-only"
31
32
  ]
32
33
  dev-repo: "git+https://github.com/ocsigen/js_of_ocaml.git"
33
34
  build: [
@@ -39,18 +40,16 @@ build: [
39
40
  name
40
41
  "-j"
41
42
  jobs
42
- "--promote-install-files=false"
43
43
  "@install"
44
44
  "@doc" {with-doc}
45
45
  ]
46
- ["dune" "install" "-p" name "--create-install-files" name]
47
46
  ]
48
47
  url {
49
48
  src:
50
- "https://github.com/ocsigen/js_of_ocaml/releases/download/4.0.0/js_of_ocaml-4.0.0.tbz"
49
+ "https://github.com/ocsigen/js_of_ocaml/releases/download/4.1.0/js_of_ocaml-4.1.0.tbz"
51
50
  checksum: [
52
- "sha256=df02f819e5b2f48234af2b3e3e7c9781afa8212f8bece7ebcfbd8358b394495e"
53
- "sha512=92e822849c8be14ce0428f7f4be3991449f76e65d408073a5b8b9674ba2d099439027aa11618b603c7ee31a179cf6976d54a929917a69b269425f0367926c200"
51
+ "sha256=91793f29a5af3deaba3f7d35ceab11e739cfe0a5cc30556f6201461a6d4236ef"
52
+ "sha512=43f91c1f37939dfc894558a23a8ca163e6f316db442bdd0a5909bd095f5b0eb596d0943883452f4b78641da71222a775476877ea9ba0500583700d1fb35e04a5"
54
53
  ]
55
54
  }
56
- x-commit-hash: "6fb1d008061b6c028c375b240882bb735d54a5bc"
55
+ x-commit-hash: "9cb30b78c1a4bde6176652b94c96b26e1140f8a4"
@@ -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
  ]
@@ -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
  ]
@@ -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,7 +22,7 @@ depends: [
22
22
  "yojson"
23
23
  "re" {>= "1.5.0"}
24
24
  "ppx_yojson_conv_lib" {>= "v0.14"}
25
- "dune-rpc" {>= "3.4.0"}
25
+ "dune-rpc"
26
26
  "chrome-trace" {>= "3.3.0"}
27
27
  "dyn"
28
28
  "stdune"
@@ -54,10 +54,10 @@ build: [
54
54
  ]
55
55
  url {
56
56
  src:
57
- "https://github.com/ocaml/ocaml-lsp/releases/download/1.14.1/lsp-1.14.1.tbz"
57
+ "https://github.com/ocaml/ocaml-lsp/releases/download/1.12.4/lsp-1.12.4.tbz"
58
58
  checksum: [
59
- "sha256=e64c4c33dd037791fcc9bedfd4d615dda6d169e3eaced150f365539dacab69d9"
60
- "sha512=1eeede473ab2c3481f2e6c67676451d50e005cf44e418ca209848be5ee0c6f034b08e17f8312a751d13f0194f6519b02cb82f232553fe7ec80b53e5c5a56f947"
59
+ "sha256=919b98027cbc56359dabe8a911d3d24d1706cea8cd04e8173a2d1d3b06f9d846"
60
+ "sha512=68898112f13b7ee13040933ed95597e59f83e42ac9d6ead375baa2d1248b1614b5b80ae5e0d839f7f5a8372fd1f47e6bf308d331ca1df90cb4b9927825f89635"
61
61
  ]
62
62
  }
63
- x-commit-hash: "5e6b3c90e368ca1650077f817f9862240a730cbc"
63
+ x-commit-hash: "f53ad362aa2c47216dd96d32b22bb95ee3e774e4"
@@ -7,13 +7,11 @@ authors: ["Josh Berdine <jjb@fb.com>"]
7
7
  homepage: "https://github.com/ocaml-ppx/ocamlformat"
8
8
  bug-reports: "https://github.com/ocaml-ppx/ocamlformat/issues"
9
9
  depends: [
10
- "dune" {>= "2.8"}
11
- "dune" {with-test & < "3.0"}
12
- "ocaml" {>= "4.08" & < "4.15"}
10
+ "ocaml" {>= "4.08"}
13
11
  "alcotest" {with-test}
14
- "base" {>= "v0.12.0" & < "v0.15"}
15
- "cmdliner"
16
- "cmdliner" {with-test & < "1.1.0"}
12
+ "base" {>= "v0.12.0"}
13
+ "cmdliner" {>= "1.1.0"}
14
+ "dune" {>= "2.8"}
17
15
  "dune-build-info"
18
16
  "either"
19
17
  "fix"
@@ -22,12 +20,14 @@ depends: [
22
20
  "menhirLib" {>= "20201216"}
23
21
  "menhirSdk" {>= "20201216"}
24
22
  "ocaml-version" {>= "3.3.0"}
23
+ "ocamlformat-rpc-lib" {with-test & = version}
25
24
  "ocp-indent"
26
- "odoc-parser" {>= "1.0.0" & < "2.0.0"}
25
+ "odoc-parser" {>= "2.0.0" & < "3.0.0"}
27
26
  "re" {>= "1.7.2"}
28
- "stdio" {< "v0.15"}
27
+ "stdio"
29
28
  "uuseg" {>= "10.0.0"}
30
29
  "uutf" {>= "1.0.1"}
30
+ "csexp" {>= "1.4.0"}
31
31
  "odoc" {with-doc}
32
32
  ]
33
33
  build: [
@@ -48,10 +48,10 @@ dev-repo: "git+https://github.com/ocaml-ppx/ocamlformat.git"
48
48
  license: ["MIT" "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"]
49
49
  url {
50
50
  src:
51
- "https://github.com/ocaml-ppx/ocamlformat/releases/download/0.20.1/ocamlformat-0.20.1.tbz"
51
+ "https://github.com/ocaml-ppx/ocamlformat/releases/download/0.24.1/ocamlformat-0.24.1.tbz"
52
52
  checksum: [
53
- "sha256=7d3a51645416fa78287344fa03af6b78450067a1a61e4790bf1b29779cd10235"
54
- "sha512=8cc8bc9ebf822b18cf54f2f5b0b61c7bf775a1de9b984f57448dcee391627a08d43e7b15a2cfbd287f5ae16b3b9dd18c42086b59ccfbe3174184418652c4f668"
53
+ "sha256=023425e9818f80ea50537b2371a4a766c149a9957d05807e88a004d2d5f441ce"
54
+ "sha512=753b6128be68042895202f99959b360ce954db6f82b19b83b4bb346761a8e9cfdfc2b4b25e2070e60601b555562e78f9ebb02760ff127464e0b66cedbddca304"
55
55
  ]
56
56
  }
57
- x-commit-hash: "74668925ca977e252acb084bd139b3077cf95b58" # OCamlFormat is distributed under the MIT license. Parts of the OCaml library are vendored for OCamlFormat and distributed under their original LGPL 2.1 license
57
+ x-commit-hash: "86938aa4435b251af1a3b081f7fbed90f982cf62" # OCamlFormat is distributed under the MIT license. Parts of the OCaml library are vendored for OCamlFormat and distributed under their original LGPL 2.1 license
@@ -37,11 +37,11 @@ build: [
37
37
  ]
38
38
  url {
39
39
  src:
40
- "https://github.com/ocaml-doc/odoc-parser/releases/download/1.0.1/odoc-parser-1.0.1.tbz"
40
+ "https://github.com/ocaml-doc/odoc-parser/releases/download/2.0.0/odoc-parser-2.0.0.tbz"
41
41
  checksum: [
42
- "sha256=a2bbe8e4201b60e980bab01e96e41f2ba0b05ba3f50b44f75837e8a2fb907d2c"
43
- "sha512=c3339aae880ce72df866746d9ed9e7d38a752bf994ba24e948c086349604007e39602a1c31cf2ddb61ac8f8dc9dceccca43fe185850b83e3a02d75121f9ddfe2"
42
+ "sha256=407919fbb0eb95761d6fc6ec6777628d94aa1907343bdca678b1880bafb33922"
43
+ "sha512=d2bffa3e9f30471045682e390dcee7a2c1caf3831bca4bd57c16939e782c2e23434e6f1c9887580a1804800b3629ef4c4311a9d418fca5a939f324650d54006e"
44
44
  ]
45
45
  }
46
- x-commit-hash: "216e3234b57bf194e65e14200e43607cc4e47da6"
46
+ x-commit-hash: "ebfd3b9489e44187da2c67d79a32b6fc1e92bda4"
47
47
 
@@ -8,7 +8,7 @@ homepage: "https://github.com/ocaml/dune"
8
8
  doc: "https://dune.readthedocs.io/"
9
9
  bug-reports: "https://github.com/ocaml/dune/issues"
10
10
  depends: [
11
- "dune" {>= "3.3"}
11
+ "dune" {>= "3.5"}
12
12
  "ocaml" {>= "4.08.0"}
13
13
  "odoc" {with-doc}
14
14
  ]
@@ -29,10 +29,10 @@ build: [
29
29
  ]
30
30
  ]
31
31
  url {
32
- src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
32
+ src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
33
33
  checksum: [
34
- "sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
35
- "sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
34
+ "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
35
+ "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
36
36
  ]
37
37
  }
38
- x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
38
+ x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
@@ -10,7 +10,7 @@ build: [
10
10
  ["dune" "build" "-p" name "-j" jobs]
11
11
  ]
12
12
  depends: [
13
- "ocaml" {>= "4.04.2" & < "5.0"}
13
+ "ocaml" {>= "4.08"}
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://ocaml.janestreet.com/ocaml-core/v0.14/files/sexplib0-v0.14.0.tar.gz"
25
- checksum: "md5=37aff0af8f8f6f759249475684aebdc4"
24
+ src: "https://github.com/janestreet/sexplib0/archive/refs/tags/v0.15.1.tar.gz"
25
+ checksum: "md5=ab8fd6273f35a792cad48cbb3024a7f9"
26
26
  }
@@ -10,8 +10,8 @@ build: [
10
10
  ["dune" "build" "-p" name "-j" jobs]
11
11
  ]
12
12
  depends: [
13
- "ocaml" {>= "4.04.2"}
14
- "base" {>= "v0.14" & < "v0.15"}
13
+ "ocaml" {>= "4.08.0"}
14
+ "base" {>= "v0.15" & < "v0.16"}
15
15
  "dune" {>= "2.0.0"}
16
16
  ]
17
17
  synopsis: "Standard IO library for OCaml"
@@ -22,6 +22,6 @@ It re-exports the input/output functions of the OCaml standard
22
22
  libraries using a more consistent API.
23
23
  "
24
24
  url {
25
- src: "https://ocaml.janestreet.com/ocaml-core/v0.14/files/stdio-v0.14.0.tar.gz"
26
- checksum: "md5=4cbdf15f0be88c3258aaeff9e04e00e9"
25
+ src: "https://ocaml.janestreet.com/ocaml-core/v0.15/files/stdio-v0.15.0.tar.gz"
26
+ checksum: "sha256=c37292921dc6a88425f773eba6bdbeac1dedacd1f55917fa4bcd9c4b25795e4b"
27
27
  }
@@ -9,7 +9,7 @@ homepage: "https://github.com/ocaml/dune"
9
9
  doc: "https://dune.readthedocs.io/"
10
10
  bug-reports: "https://github.com/ocaml/dune/issues"
11
11
  depends: [
12
- "dune" {>= "3.3"}
12
+ "dune" {>= "3.5"}
13
13
  "ocaml" {>= "4.08.0"}
14
14
  "base-unix"
15
15
  "dyn" {= version}
@@ -35,10 +35,10 @@ build: [
35
35
  ]
36
36
  ]
37
37
  url {
38
- src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
38
+ src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
39
39
  checksum: [
40
- "sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
41
- "sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
40
+ "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
41
+ "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
42
42
  ]
43
43
  }
44
- x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
44
+ x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
@@ -1,22 +1,6 @@
1
1
  opam-version: "2.0"
2
- synopsis: """The transitory OCaml software packager"""
3
- maintainer: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"]
4
- authors: ["The topkg programmers"]
5
- homepage: "https://erratique.ch/software/topkg"
6
- doc: "https://erratique.ch/software/topkg/doc"
7
- dev-repo: "git+https://erratique.ch/repos/topkg.git"
8
- bug-reports: "https://github.com/dbuenzli/topkg/issues"
9
- license: ["ISC"]
10
- tags: ["packaging" "ocamlbuild" "org:erratique"]
11
- depends: ["ocaml" {>= "4.05.0"}
12
- "ocamlfind" {build & >= "1.6.1"}
13
- "ocamlbuild"]
14
- build: [["ocaml" "pkg/pkg.ml" "build" "--pkg-name" name
15
- "--dev-pkg" "%{dev}%"]]
16
- url {
17
- src: "https://erratique.ch/software/topkg/releases/topkg-1.0.5.tbz"
18
- checksum: "sha512=9450e9139209aacd8ddb4ba18e4225770837e526a52a56d94fd5c9c4c9941e83e0e7102e2292b440104f4c338fabab47cdd6bb51d69b41cc92cc7a551e6fefab"}
19
- description: """
2
+ synopsis: "The transitory OCaml software packager"
3
+ description: """\
20
4
  Topkg is a packager for distributing OCaml software. It provides an
21
5
  API to describe the files a package installs in a given build
22
6
  configuration and to specify information about the package's
@@ -41,4 +25,23 @@ Topkg-care is distributed under the ISC license it depends on
41
25
  [cmdliner]: http://erratique.ch/software/cmdliner
42
26
  [webbrowser]: http://erratique.ch/software/webbrowser
43
27
 
44
- Home page: http://erratique.ch/software/topkg"""
28
+ Home page: http://erratique.ch/software/topkg"""
29
+ maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>"
30
+ authors: "The topkg programmers"
31
+ license: "ISC"
32
+ tags: ["packaging" "ocamlbuild" "org:erratique"]
33
+ homepage: "https://erratique.ch/software/topkg"
34
+ doc: "https://erratique.ch/software/topkg/doc"
35
+ bug-reports: "https://github.com/dbuenzli/topkg/issues"
36
+ depends: [
37
+ "ocaml" {>= "4.05.0"}
38
+ "ocamlfind" {build & >= "1.6.1"}
39
+ "ocamlbuild"
40
+ ]
41
+ build: ["ocaml" "pkg/pkg.ml" "build" "--pkg-name" name "--dev-pkg" "%{dev}%"]
42
+ dev-repo: "git+https://erratique.ch/repos/topkg.git"
43
+ url {
44
+ src: "https://erratique.ch/software/topkg/releases/topkg-1.0.6.tbz"
45
+ checksum:
46
+ "sha512=8e34391e2f499cec332b79454a4edb36a35db6fe22437f017fd5c80ae065160dc967ac02d894a94d08d62dd476521e63733f4cadc3b9b6b314b6aa5b2b4ede78"
47
+ }
@@ -9,7 +9,7 @@ homepage: "https://github.com/ocaml/dune"
9
9
  doc: "https://dune.readthedocs.io/"
10
10
  bug-reports: "https://github.com/ocaml/dune/issues"
11
11
  depends: [
12
- "dune" {>= "3.3"}
12
+ "dune" {>= "3.5"}
13
13
  "ocaml" {>= "4.08"}
14
14
  "odoc" {with-doc}
15
15
  ]
@@ -30,10 +30,10 @@ build: [
30
30
  ]
31
31
  ]
32
32
  url {
33
- src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
33
+ src: "https://github.com/ocaml/dune/releases/download/3.6.1/dune-3.6.1.tbz"
34
34
  checksum: [
35
- "sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
36
- "sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
35
+ "sha256=f1d5ac04b7a027f3d549e25cf885ebf7acc135e0291c18e6b43123a799c143ce"
36
+ "sha512=64714ab6155cd04bc33d693fc7a6d9d61aa7a278357eeff159df324e083914fcd556459a3945acacf1bbc3775f2232ab0c78006ab8a434dc58dcf95ffdffac52"
37
37
  ]
38
38
  }
39
- x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
39
+ x-commit-hash: "7d2788fc94a071bca897aefc95f1464911870a4c"
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@grain/binaryen.ml",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "description": "OCaml bindings for Binaryen.",
5
5
  "author": "Oscar Spencer <oscar@grain-lang.org>",
6
6
  "license": "Apache-2.0",
7
7
  "dependencies": {
8
8
  "ocaml": ">= 4.12.0",
9
- "@grain/libbinaryen": ">= 109.0.0 < 110.0.0",
10
- "@opam/dune": ">= 2.9.1",
11
- "@opam/dune-configurator": ">= 2.9.1"
9
+ "@grain/libbinaryen": ">= 110.0.0 < 111.0.0",
10
+ "@opam/dune": ">= 3.0.0",
11
+ "@opam/dune-configurator": ">= 3.0.0"
12
12
  },
13
13
  "devDependencies": {
14
- "@opam/js_of_ocaml-compiler": ">= 3.10.0",
15
- "@opam/ocamlformat": "0.20.1",
16
- "@opam/ocaml-lsp-server": "^1.9.1"
14
+ "@opam/js_of_ocaml-compiler": ">= 4.1.0 < 5.0.0",
15
+ "@opam/ocamlformat": "0.24.1",
16
+ "@opam/ocaml-lsp-server": ">= 1.9.1 < 1.13.0"
17
17
  },
18
18
  "resolutions": {
19
19
  "@opam/ocp-indent": "1.7.0"
@@ -22,7 +22,7 @@
22
22
  "build": "dune build -p binaryen"
23
23
  },
24
24
  "scripts": {
25
- "test": "esy b dune runtest",
25
+ "test": "esy b dune runtest --display=short",
26
26
  "format": "dune build @fmt --auto-promote"
27
27
  },
28
28
  "installConfig": {