tvl-depot/tvix/castore/src/lib.rs
Florian Klink 9757bf6377 refactor(tvix/*store): helper for channel creation from url
This moves the repetitive code to parse a URL and create a channel
connected to it into `tvix_castore::channel::from_url`.

Part of b/308

Change-Id: Idd342cd71cad5e78a9b258b38c1b227993e75310
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9707
Tested-by: BuildkiteCI
Reviewed-by: Connor Brewster <cbrewster@hey.com>
2023-10-14 12:26:40 +00:00

16 lines
240 B
Rust

mod digests;
mod errors;
pub mod blobservice;
pub mod channel;
pub mod directoryservice;
pub mod fixtures;
pub mod import;
pub mod proto;
pub mod utils;
pub use digests::{B3Digest, B3_LEN};
pub use errors::Error;
#[cfg(test)]
mod tests;