shardline-server 1.0.1

HTTP server boundary, runtime, and operator workflows for Shardline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod blob_upload;
mod handlers;
mod helpers;
mod manifest;
pub(crate) mod path;
mod tags;
mod token;

pub(crate) use handlers::{oci_api_dispatch, oci_dispatch, oci_transfer_dispatch, oci_v2_root};
#[cfg(feature = "fuzzing")]
pub(crate) use path::parse_oci_path;
pub(crate) use token::oci_registry_token;

#[cfg(test)]
mod test_helpers;

#[cfg(test)]
mod tests;