sst 0.19.0

SST provides a sorted string table abstraction.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Pretty-print how the command-line is interpereted.

use arrrg::CommandLine;

use sst::LogOptions;

fn main() {
    let (options, free) = LogOptions::from_command_line("USAGE: log-options [OPTIONS]");
    if !free.is_empty() {
        eprintln!("expected no positional arguments");
        std::process::exit(1);
    }
    println!("{options:#?}");
}