Data_encoding: do not open the implementation modules by default

This commit is contained in:
Grégoire Henry 2018-05-03 11:05:06 +02:00
parent 0a3c9d52ec
commit caa764f0ff
3 changed files with 5 additions and 2 deletions

View File

@ -8,13 +8,14 @@
(**************************************************************************) (**************************************************************************)
include Tezos_stdlib include Tezos_stdlib
include Tezos_data_encoding
include Tezos_error_monad include Tezos_error_monad
include Tezos_rpc include Tezos_rpc
include Tezos_clic include Tezos_clic
include Tezos_crypto include Tezos_crypto
include Tezos_micheline include Tezos_micheline
module Data_encoding = Tezos_data_encoding.Data_encoding
module List = struct module List = struct
include List include List
include Tezos_stdlib.TzList include Tezos_stdlib.TzList

View File

@ -8,12 +8,13 @@
(**************************************************************************) (**************************************************************************)
include (module type of (struct include Tezos_stdlib end)) include (module type of (struct include Tezos_stdlib end))
include (module type of (struct include Tezos_data_encoding end))
include (module type of (struct include Tezos_error_monad end)) include (module type of (struct include Tezos_error_monad end))
include (module type of (struct include Tezos_rpc end)) include (module type of (struct include Tezos_rpc end))
include (module type of (struct include Tezos_clic end)) include (module type of (struct include Tezos_clic end))
include (module type of (struct include Tezos_crypto end)) include (module type of (struct include Tezos_crypto end))
module Data_encoding = Data_encoding
module List : sig module List : sig
include (module type of (struct include List end)) include (module type of (struct include List end))
include (module type of (struct include Tezos_stdlib.TzList end)) include (module type of (struct include Tezos_stdlib.TzList end))

View File

@ -6,6 +6,7 @@
(* All rights reserved. No warranty, explicit or implicit, provided. *) (* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *) (* *)
(**************************************************************************) (**************************************************************************)
module Encoding = module Encoding =
struct struct
include Encoding include Encoding