obj-cli 1.0.0

Command-line tools (dump, check, stat, backup) for the obj embedded document database.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `obj` — command-line entry point.
//!
//! Thin shim: call [`obj_cli::run`], exit with the returned code.
//! All logic lives in the sibling library half so integration tests
//! exercise the exact same dispatch path.

#![forbid(unsafe_code)]
#![deny(missing_docs)]
#![deny(rustdoc::broken_intra_doc_links)]

fn main() {
    std::process::exit(obj_cli::run());
}