Skip to content
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

Add missing eio_main dependency to cohttp-bench #1071

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cohttp-bench.opam
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ depends: [
"core" {>= "v0.13.0"}
"core_bench"
"eio" {>= "0.12"}
"eio_main"
"http" {= version}
"cohttp" {= version}
"cohttp-eio" {= version}
Expand Down
1 change: 1 addition & 0 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,7 @@
core_bench
(eio
(>= 0.12))
eio_main
(http
(= :version))
(cohttp
Expand Down
10 changes: 5 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
checkInputs = [ uri fmt ounit2 alcotest cohttp-async ];
propagatedBuildInputs = [
ocurl http stringext cohttp-curl core core_unix
async_kernel async_unix
async_kernel async_unix
];
};
cohttp-lwt = pkg {
Expand Down Expand Up @@ -103,11 +103,11 @@
cohttp-eio = pkg {
pname = "cohttp-eio";
checkInputs = [
alcotest eio_main mdx ppx_here
tls-eio
alcotest eio mdx ppx_here
tls-eio
mirage-crypto-rng-eio
];
propagatedBuildInputs = [ cohttp eio eio_main logs uri fmt ptime http ];
propagatedBuildInputs = [ cohttp eio logs uri fmt ptime http ];
};
cohttp-mirage = pkg {
pname = "cohttp-mirage";
Expand All @@ -119,7 +119,7 @@
cohttp-bench = pkg {
pname = "cohttp-bench";
buildInputs = [
core core_bench eio http cohttp cohttp-eio
core core_bench eio eio_main http cohttp cohttp-eio
cohttp-lwt-unix cohttp-server-lwt-unix cohttp-async
];
};
Expand Down
Loading