https://gitlab.com/tezos/tezos
Raw File
Tip revision: 9b756fa0069483b04a93de2e7b6ca7bb30678a7a authored by Fedor Sheremetyev on 18 January 2022, 18:09:57 UTC
Ithaca2: vanity nonce
Tip revision: 9b756fa
dune
(library
 (name tezos_rpc_http)
 (public_name tezos-rpc-http)
 (instrumentation (backend bisect_ppx))
 (libraries
  tezos-base
  resto-cohttp)
 (flags (:standard -open Tezos_base__TzPervasives))
 (modules RPC_client_errors media_type))

(library
 (name tezos_rpc_http_client)
 (public_name tezos-rpc-http-client)
 (instrumentation (backend bisect_ppx))
 (libraries
  tezos-base
  resto-cohttp-client
  tezos-rpc-http)
 (flags (:standard -open Tezos_base__TzPervasives -open Tezos_rpc_http))
 (modules RPC_client))

(library
 (name tezos_rpc_http_client_unix)
 (public_name tezos-rpc-http-client-unix)
 (instrumentation (backend bisect_ppx))
 (libraries
  tezos-stdlib-unix
  tezos-base
  cohttp-lwt-unix
  resto-cohttp-client
  tezos-rpc-http-client)
 (flags
  (:standard -open Tezos_base__TzPervasives -open Tezos_rpc_http_client))
 (modules RPC_client_unix))

(library
 (name tezos_rpc_http_server)
 (public_name tezos-rpc-http-server)
 (instrumentation (backend bisect_ppx))
 (libraries
  tezos-base
  tezos-stdlib-unix
  resto-cohttp-server
  resto-acl
  tezos-rpc-http)
 (flags
  (:standard
   -open Tezos_base__TzPervasives
   -open Tezos_stdlib_unix
   -open Tezos_rpc
   -open Tezos_rpc_http))
 (modules RPC_server RPC_logging)
 (private_modules RPC_logging))
back to top