#![doc = include_str!("../README.md")]
#![forbid(unsafe_code)]
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
pub struct ProjectInfo {
pub name: &'static str,
pub tagline: &'static str,
pub protocol: &'static str,
pub repository: &'static str,
}
pub const PROJECT: ProjectInfo = ProjectInfo {
name: "Ursula",
tagline: "Distributed Durable Streams over HTTP.",
protocol: "Durable Streams Protocol",
repository: "https://github.com/tonbo-io/stream",
};