quilt-rs 0.30.1

Rust library for accessing Quilt data packages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//!
//! Namespace contains helpers to work with manifest and its content (rows).

#[allow(clippy::module_inception)]
mod manifest;
mod top_hasher;

pub use top_hasher::TopHasher;

pub use manifest::Manifest;
pub use manifest::ManifestHeader;
pub use manifest::ManifestRow;
pub use manifest::MetadataSchema;
pub use manifest::Workflow;
pub use manifest::WorkflowId;