January 2019
Intermediate to advanced
520 pages
14h 32m
English
Add a dependency to Cargo.toml:
clap = "2.32"
This crate provides useful macros for adding meta information about the program. These are as follows:
All information for these macros is taken from the Cargo.toml file.
Import the necessary types. We need two types, which are App and Arg, and the macros mentioned previously:
use clap::{crate_authors, crate_description, crate_name, crate_version, Arg, App};
Read now
Unlock full access