Skip to content

Commit

Permalink
Dependency: revery -> 0.15.3 (#191)
Browse files Browse the repository at this point in the history
* update package.json

* Update lockfiles
  • Loading branch information
bryphe committed Mar 27, 2019
1 parent 53ea4e4 commit f4d53ca
Show file tree
Hide file tree
Showing 17 changed files with 497 additions and 395 deletions.
229 changes: 125 additions & 104 deletions bench.esy.lock/index.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bench.esy.lock/opam/cmdliner.1.0.2/opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ depends: [
"ocaml" {>= "4.01.0"}
"ocamlfind" {build}
"ocamlbuild" {build}
"topkg" {build}
"topkg" {>= "0.8.1" & build}
"result"
]
build: [[
Expand Down
60 changes: 0 additions & 60 deletions bench.esy.lock/opam/lwt.4.1.0/opam

This file was deleted.

58 changes: 58 additions & 0 deletions bench.esy.lock/opam/lwt.4.2.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
opam-version: "2.0"

synopsis: "Promises and event-driven I/O"

license: "MIT"
homepage: "https://github.com/ocsigen/lwt"
doc: "https://ocsigen.org/lwt/manual/"
bug-reports: "https://github.com/ocsigen/lwt/issues"

authors: [
"Jérôme Vouillon"
"Jérémie Dimino"
]
maintainer: [
"Anton Bachin <antonbachin@yahoo.com>"
"Mauricio Fernandez <mfp@acm.org>"
"Simon Cruanes <simon.cruanes.2007@m4x.org>"
]
dev-repo: "git+https://github.com/ocsigen/lwt.git"

depends: [
"cppo" {build & >= "1.1.0"}
"dune" {build}
"mmap"
"ocaml" {>= "4.02.0"}
"result" # result is needed as long as Lwt supports OCaml 4.02.
"seq" # seq is needed as long as Lwt supports OCaml < 4.07.0.

"bisect_ppx" {dev & >= "1.3.0"}
"ocamlfind" {dev & >= "1.7.3-1"}
]
depopts: [
"base-threads"
"base-unix"
"conf-libev"
]

conflicts: [
"ocaml-variants" {= "4.02.1+BER"}
]

build: [
["dune" "build" "-p" name "-j" jobs]
]

description: "A promise is a value that may become determined in the future.

Lwt provides typed, composable promises. Promises that are resolved by I/O are
resolved by Lwt in parallel.

Meanwhile, OCaml code, including code creating and waiting on promises, runs in
a single thread by default. This reduces the need for locks or other
synchronization primitives. Code can be run in parallel on an opt-in basis."

url {
src: "https://github.com/ocsigen/lwt/archive/4.2.0.tar.gz"
checksum: "md5=2ce7827948adc611319f9449e4519070"
}
Original file line number Diff line number Diff line change
@@ -1,30 +1,33 @@
opam-version: "2.0"
version: "1.2.1"
maintainer: [
"Anton Bachin <antonbachin@yahoo.com>"
]

synopsis: "PPX syntax for Lwt, providing something similar to async/await from JavaScript"

license: "MIT"
homepage: "https://github.com/ocsigen/lwt"
doc: "https://ocsigen.org/lwt/api/Ppx_lwt"
bug-reports: "https://github.com/ocsigen/lwt/issues"

authors: [
"Gabriel Radanne"
]
homepage: "https://github.com/ocsigen/lwt"
doc: "https://ocsigen.org/lwt/api/Ppx_lwt"
maintainer: [
"Anton Bachin <antonbachin@yahoo.com>"
]
dev-repo: "git+https://github.com/ocsigen/lwt.git"
bug-reports: "https://github.com/ocsigen/lwt/issues"
license: "LGPL with OpenSSL linking exception"

depends: [
"ocaml" {>= "4.02.0"}
"jbuilder" {build & >= "1.0+beta14"}
"dune" {build}
"lwt"
"ocaml" {>= "4.02.0"}
"ocaml-migrate-parsetree"
"ppx_tools_versioned" {>= "5.0.1"}
]

build: [
["jbuilder" "build" "-p" name "-j" jobs]
["dune" "build" "-p" name "-j" jobs]
]
synopsis:
"PPX syntax for Lwt, providing something similar to async/await from JavaScript"

url {
src: "https://github.com/ocsigen/lwt/archive/4.1.0.tar.gz"
checksum: "md5=e919bee206f18b3d49250ecf9584fde7"
src: "https://github.com/ocsigen/lwt/archive/4.2.0.tar.gz"
checksum: "md5=2ce7827948adc611319f9449e4519070"
}
Original file line number Diff line number Diff line change
@@ -1,31 +1,34 @@
opam-version: "2.0"
version: "1.1.1"

synopsis: "Helpers for using React with Lwt"

license: "MIT"
homepage: "https://github.com/ocsigen/lwt"
doc: "https://ocsigen.org/lwt/api/Lwt_react"
bug-reports: "https://github.com/ocsigen/lwt/issues"

authors: [
"Jérémie Dimino"
]
maintainer: [
"Anton Bachin <antonbachin@yahoo.com>"
"Mauricio Fernandez <mfp@acm.org>"
"Simon Cruanes <simon.cruanes.2007@m4x.org>"
]
authors: [
"Jérémie Dimino"
]
homepage: "https://github.com/ocsigen/lwt"
doc: "https://ocsigen.org/lwt/api/Lwt_react"
dev-repo: "git+https://github.com/ocsigen/lwt.git"
bug-reports: "https://github.com/ocsigen/lwt/issues"
license: "LGPL with OpenSSL linking exception"

build: [
["jbuilder" "build" "-p" name "-j" jobs]
["jbuilder" "runtest" "-p" name] {with-test}
]
depends: [
"ocaml"
"jbuilder" {build & >= "1.0+beta14"}
"dune" {build}
"lwt" {>= "3.0.0"}
"ocaml"
"react" {>= "1.0.0"}
]
synopsis: "Helpers for using React with Lwt"

build: [
["dune" "build" "-p" name "-j" jobs]
]

url {
src: "https://github.com/ocsigen/lwt/archive/4.0.0.tar.gz"
checksum: "md5=3bbde866884e32cc7a9d9cbd1e52bde3"
src: "https://github.com/ocsigen/lwt/archive/4.2.0.tar.gz"
checksum: "md5=2ce7827948adc611319f9449e4519070"
}
24 changes: 24 additions & 0 deletions bench.esy.lock/opam/mmap.1.0.2/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
opam-version: "2.0"
maintainer: "jeremie@dimino.org"
authors: ["Jérémie Dimino <jeremie@dimino.org>"]
homepage: "https://github.com/mirage/mmap"
bug-reports: "https://github.com/mirage/mmap/issues"
doc: "https://mirage.github.io/mmap/"
dev-repo: "git+https://github.com/mirage/mmap.git"
license: "LGPL 2.1 with linking exception"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.02.3"}
"dune" {build & >= "1.6"}
]
synopsis: "File mapping functionality"
description: """
This project provides a Mmap.map_file functions for mapping files in memory.
"""
url {
src:
"https://github.com/mirage/mmap/releases/download/v1.0.2/mmap-v1.0.2.tbz"
checksum: "md5=7880d4d74b37664f9bb0906ae1cadf6b"
}
2 changes: 2 additions & 0 deletions bench.esy.lock/opam/ocamlfind.1.8.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ build: [
"-config"
"%{lib}%/findlib.conf"
"-no-custom"
"-no-camlp4" {!ocaml:preinstalled & ocaml:version >= "4.02.0"}
"-no-topfind" {ocaml:preinstalled}
]
[make "all"]
Expand All @@ -37,6 +38,7 @@ remove: [
man
"-config"
"%{lib}%/findlib.conf"
"-no-camlp4" {!ocaml:preinstalled & ocaml:version >= "4.02.0"}
"-no-topfind" {ocaml:preinstalled}
]
[make "uninstall"]
Expand Down
Loading

0 comments on commit f4d53ca

Please sign in to comment.