description.ml1 2 3 4 5 6 7 8 9 10 11 12 13 14 15open Core_kernel module Stable = struct module V1 = struct type t = { name : string ; version : int } [@@deriving bin_io, compare, hash, sexp] end end include Stable.V1 include Comparable.Make (Stable.V1) include Hashable.Make (Stable.V1)