aven 0.1.10

Local-first task manager CLI and sync server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod apply;
mod client;
mod server;
pub(crate) mod wire;

#[allow(unused_imports)]
pub(crate) use apply::apply_remote_set_field;
#[allow(unused_imports)]
pub(crate) use client::{
    SyncHttpClient, SyncSummary, run_sync_once, run_sync_with_page_budget,
    run_sync_with_page_budget_using_client, sync_client,
};
pub(crate) use server::run_server;
#[allow(unused_imports)]
pub(crate) use wire::{ChangeWire, SYNC_PROTOCOL_VERSION, sync_server_url_is_valid};