-
Notifications
You must be signed in to change notification settings - Fork 1.2k
2 packages from ocsigen/lwt at 6.0.0~alpha01 #28222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
raphael-proust
wants to merge
13
commits into
ocaml:master
Choose a base branch
from
raphael-proust:opam-publish-lwt.6.0.0-alpha01
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
63b45b0
2 packages from ocsigen/lwt at 6.0.0~alpha01
raphael-proust 381d421
mark lwt_log as incompatible with lwt.6+
raphael-proust 1e1bf68
mark upperbounds
raphael-proust 7460f4e
lwt_direct dep constraint to lwt is now =version
raphael-proust a14b268
fix temporary constraints related to 6~alpha
raphael-proust 8da7a08
compatibility with lwt6~alpha
raphael-proust b736b8c
conf-glib-2: windows compat
raphael-proust a068f22
caqti-lwt: incompatible with lwt6~
raphael-proust 5d1676c
lambda-term incompatible with lwt6~
raphael-proust 360a1a1
lwt-ppx.5.8.1 incompatible with lwt6~
raphael-proust ea0a12a
mwt is incompatible with lwt6~
raphael-proust 9e8e27c
tezt incompatible with lwt6~
raphael-proust 82cd27e
nocrypto incompatible with lwt6~
raphael-proust File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "Promises and event-driven I/O" | ||
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. | ||
""" | ||
maintainer: [ | ||
"Raphaël Proust <[email protected]>" "Anton Bachin <[email protected]>" | ||
] | ||
authors: ["Jérôme Vouillon" "Jérémie Dimino"] | ||
license: "MIT" | ||
homepage: "https://github.com/ocsigen/lwt" | ||
doc: "https://ocsigen.org/lwt" | ||
bug-reports: "https://github.com/ocsigen/lwt/issues" | ||
depends: [ | ||
"dune" {>= "2.7"} | ||
"ocaml" {>= "4.14"} | ||
"domain_shims" | ||
"cppo" {build & >= "1.1.0"} | ||
"ocamlfind" {dev & >= "1.7.3-1"} | ||
"odoc" {with-doc & >= "2.3.0"} | ||
"bisect_ppx" {with-test} | ||
"dune-configurator" | ||
"ocplib-endian" | ||
] | ||
depopts: ["base-threads" "base-unix" "conf-libev"] | ||
dev-repo: "git+https://github.com/ocsigen/lwt.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"exec" | ||
"-p" | ||
name | ||
"src/unix/config/discover.exe" | ||
"--" | ||
"--save" | ||
"--use-libev" "%{conf-libev:installed}%" | ||
] | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
x-maintenance-intent:[ "(latest)" ] | ||
available: opam-version >= "2.1.0" | ||
flags: avoid-version | ||
url { | ||
src: | ||
"https://github.com/ocsigen/lwt/archive/refs/tags/6.0.0-alpha01.tar.gz" | ||
checksum: [ | ||
"md5=33a91da42f38f86555d633bf847fdb19" | ||
"sha512=1c6c5784d0cdbdd265ef71d3b64dd16f5d5ec68d98227154d6301d15fde7d16e273d83819028747762fb4ba3c3ae8833ce308e581b6be8447f8775982c9f6be9" | ||
] | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "Direct-style control-flow and `await` for Lwt" | ||
maintainer: [ | ||
"Raphaël Proust <[email protected]>" "Anton Bachin <[email protected]>" | ||
] | ||
authors: ["Simon Cruanes"] | ||
license: "MIT" | ||
homepage: "https://github.com/ocsigen/lwt" | ||
doc: "https://ocsigen.org/lwt" | ||
bug-reports: "https://github.com/ocsigen/lwt/issues" | ||
depends: [ | ||
"dune" {>= "2.7"} | ||
"ocaml" {>= "5.0"} | ||
"base-unix" | ||
"lwt" {= version} | ||
"bisect_ppx" {with-test} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/ocsigen/lwt.git" | ||
available: opam-version >= "2.1.0" | ||
flags: avoid-version | ||
url { | ||
src: | ||
"https://github.com/ocsigen/lwt/archive/refs/tags/6.0.0-alpha01.tar.gz" | ||
checksum: [ | ||
"md5=33a91da42f38f86555d633bf847fdb19" | ||
"sha512=1c6c5784d0cdbdd265ef71d3b64dd16f5d5ec68d98227154d6301d15fde7d16e273d83819028747762fb4ba3c3ae8833ce308e581b6be8447f8775982c9f6be9" | ||
] | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would prevent it and not force a
5
bound