mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-01-19 08:51:49 +00:00
aa2490cd36
* bottomless: added ability to wait for uploaded frames without shutting down * bottomless: savepoint tracker * expose bottomless backup savepoint through PrimaryDatabase API * tests for detached progression updates in bottomless progression tracker * bottomless: reset savepoint tracker on new generation * bottomless: expose savepoint tracker on PrimaryDatabase
15 lines
323 B
Rust
15 lines
323 B
Rust
#![allow(non_snake_case)]
|
|
#![allow(clippy::not_unsafe_ptr_arg_deref)]
|
|
#![allow(improper_ctypes)]
|
|
|
|
mod backup;
|
|
pub mod bottomless_wal;
|
|
mod completion_progress;
|
|
pub mod read;
|
|
pub mod replicator;
|
|
pub mod transaction_cache;
|
|
pub mod uuid_utils;
|
|
mod wal;
|
|
|
|
pub use crate::completion_progress::{BackupThreshold, SavepointTracker};
|