shardline-server 1.2.0

HTTP server boundary, runtime, and operator workflows for Shardline.
Documentation
mod env;
mod secrets;
mod types;

pub use types::*;

pub(crate) mod file;

pub use env::load_server_config_from_env_with_toml;

#[cfg(test)]
use secrets::{
    PendingS3ObjectStoreConfig, configure_s3_object_store_config, optional_s3_secret_from_sources,
};
#[cfg(test)]
use secrets::{configure_provider_runtime_from_paths, read_secret_file_bytes};

#[cfg(test)]
mod tests;