getopts-long 0.1.0

Rust cli options parsing library inspired by Perl's Getopt::Long
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-FileCopyrightText: <text> © 2020 Alan D. Salewski <ads@salewski.email> </text>
// SPDX-License-Identifier: GPL-2.0-or-later OR Apache-2.0

//! # getopts-long
//!
//! A Rust command line options parsing library inspired by Perl's
//! Getopt::Long.
//!
//! This crate is currently just a place-holder.

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}