mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-10 06:52:55 +00:00
It is currently unused, and is not built as part of 'cargo build', but seems like a shame to throw it away completely.
11 lines
349 B
Rust
11 lines
349 B
Rust
//! zenith_utils is intended to be a place to put code that is shared
|
|
//! between other crates in this repository.
|
|
|
|
/// `Lsn` type implements common tasks on Log Sequence Numbers
|
|
pub mod lsn;
|
|
/// SeqWait allows waiting for a future sequence number to arrive
|
|
pub mod seqwait;
|
|
|
|
// Async version of SeqWait. Currently unused.
|
|
// pub mod seqwait_async;
|