Module Dmc

Distributed Mutable Containers (DMC)

An implementation of DMC using Irmin.S Irmin stores.

see http://purl.org/dmc

DMC specification

DMC stores

module type S = sig ... end
module Make : functor (Crypto : Dmc_crypto.S) -> functor (Store : Irmin.S with type Make.contents = string and type Make.key = string list) -> S with type t = Store.t and type tree = Store.tree

Constructor for a DMC store.