blob: c5ef14f733265b9c50dc5e2171fc8c3ad62c6493 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//! `fidl_fuchsia_pkg_ext` contains wrapper types around the auto-generated `fidl_fuchsia_pkg`
//! bindings.
#[cfg(test)]
#[macro_use]
extern crate proptest;
mod types;
pub use crate::types::{BlobId, BlobInfo};
mod repo;
pub use crate::repo::{
MirrorConfig, MirrorConfigBuilder, RepositoryBlobKey, RepositoryConfig,
RepositoryConfigBuilder, RepositoryConfigs, RepositoryKey,
};
mod errors;
pub use crate::errors::{BlobIdParseError, RepositoryParseError};