ursula 0.0.0

Distributed Durable Streams over HTTP.
Documentation
#![doc = include_str!("../README.md")]
#![forbid(unsafe_code)]

/// Project metadata for the upcoming Ursula crate.
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
pub struct ProjectInfo {
    /// Public project name.
    pub name: &'static str,
    /// Short positioning statement.
    pub tagline: &'static str,
    /// Protocol implemented by the project.
    pub protocol: &'static str,
    /// Current development repository.
    pub repository: &'static str,
}

/// Metadata for Ursula, a distributed Durable Streams implementation over HTTP.
pub const PROJECT: ProjectInfo = ProjectInfo {
    name: "Ursula",
    tagline: "Distributed Durable Streams over HTTP.",
    protocol: "Durable Streams Protocol",
    repository: "https://github.com/tonbo-io/stream",
};