You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
333 B
Rust
13 lines
333 B
Rust
//! Shared types, utilities, and definitions for Vibesville services.
|
|
//!
|
|
//! This crate provides common building blocks used across multiple services
|
|
//! in the Vibesville mono-repo. Services depend on it via a path dependency:
|
|
//!
|
|
//! ```toml
|
|
//! [dependencies]
|
|
//! common = { path = "../common" }
|
|
//! ```
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|