···11use std::ffi::{c_char, c_uchar};
2233/* A buffer that contains arbitrary byte slices. */
44-type ReftableBuf = Vec<c_char>;
44+pub type ReftableBuf = Vec<c_char>;
5566/*
77 * Hash functions understood by the reftable library. Note that the values are
88 * arbitrary and somewhat random such that we can easily detect cases where the
99 * hash hasn't been properly set up.
1010 */
1111-enum ReftableHash {
1111+pub enum ReftableHash {
1212 ReftableHashSha1 = 89,
1313 ReftableHashSha256 = 247,
1414}