Skip to content

Reimplementation of the library #56

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

Draft
wants to merge 18 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Clean up non existing libraries
  • Loading branch information
wokalski committed Jul 24, 2024
commit 3b3cf7c1510a13d83ca7b0a311e288fd59fb4c83
47 changes: 23 additions & 24 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -66,18 +66,6 @@
(>= 4.08))
(grpc (= :version))))

(package
(name grpc-core-eio)
(synopsis "Shared logic for gRPC clients and servers based on eio.")
(description
"All modules are networking-layer agnostic.")
(tags
(network rpc serialisation))
(depends
(eio
(>= 0.12))
(grpc (= :version))))

(package
(name grpc-lwt)
(synopsis "An Lwt implementation of gRPC")
Expand Down Expand Up @@ -127,16 +115,6 @@
(= :version))
stringext))

(package
(name grpc-eio-net-server-h2)
(synopsis "An h2 implementation of gRPC networking layer for eio based servers.")
(depends
(grpc-server-eio
(= :version))
(h2
(>= 0.9.0))
stringext))

(package
(name grpc-client-eio)
(synopsis "An Eio implementation of gRPC client")
Expand All @@ -149,13 +127,34 @@
(= :version))))

(package
(name grpc-eio-net-client-h2)
(name grpc-eio-io-client-h2-ocaml-protoc)
(synopsis "An h2 implementation of gRPC networking layer for eio based clients.")
(depends
(grpc-client-eio
(= :version))
(h2
(>= 0.9.0))))
(>= 0.9.0))
pbrt
pbrt_services
eio
h2-eio
grpc-eio-core))

(package
(name grpc-eio-io-server-h2-ocaml-protoc)
(synopsis "An h2 implementation of gRPC networking layer for eio based servers.")
(depends
(grpc-server-eio
(= :version))
(h2
(>= 0.9.0))
stringext
pbrt
pbrt_services
eio
h2-eio
grpc-eio-core))


(package
(name arpaca)
Expand Down
40 changes: 0 additions & 40 deletions grpc-core-eio.opam

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ depends: [
"dune" {>= "3.7"}
"grpc-client-eio" {= version}
"h2" {>= "0.9.0"}
"pbrt"
"pbrt_services"
"eio"
"h2-eio"
"grpc-eio-core"
"odoc" {with-doc}
]
build: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ depends: [
"grpc-server-eio" {= version}
"h2" {>= "0.9.0"}
"stringext"
"pbrt"
"pbrt_services"
"eio"
"h2-eio"
"grpc-eio-core"
"odoc" {with-doc}
]
build: [
Expand Down
1 change: 1 addition & 0 deletions lib/eio/io-client-h2-ocaml-protoc/dune
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
(library
(public_name grpc-eio-io-client-h2-ocaml-protoc)
(name io_client_h2_ocaml_protoc)
(libraries pbrt pbrt_services grpc-client-eio h2 eio h2-eio grpc_eio_core))
1 change: 1 addition & 0 deletions lib/eio/io-server-h2-ocaml-protoc/dune
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
(library
(public_name grpc-eio-io-server-h2-ocaml-protoc)
(name io_server_h2_ocaml_protoc)
(libraries grpc-server-eio h2-eio pbrt eio.mock grpc-eio-core)
(inline_tests)
Expand Down