hive-router 0.0.63

GraphQL router/gateway for Federation
1
2
3
4
5
6
7
8
9
#[derive(Debug, thiserror::Error)]
pub enum StorageError {
    #[error("failed to configure storage runtime: {0}")]
    Configuration(String),
    #[error("storage failure: {0}")]
    Store(#[from] object_store::Error),
    #[error("failed to format contents: {0}")]
    Format(#[from] std::string::FromUtf8Error),
}