Crates.io | serde_args |
lib.rs | serde_args |
version | |
source | src |
created_at | 2024-12-16 04:01:55.088855+00 |
updated_at | 2024-12-22 06:53:50.500407+00 |
description | Command line argument parsing with serde. |
homepage | |
repository | https://github.com/Anders429/serde_args |
max_upload_size | |
id | 1484615 |
Cargo.toml error: | TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Command line argument parsing with serde
.
This library allows parsing command line arguments into types implementing Deserialize
.
serde_derive
, including attributes like #[serde(alias)]
.Basic usage of serde_args
simply involves calling the from_env()
function using a type implemented Deserialize
. The type you provide defines your program's argument format. On success, the type is returned; on failure, a printable Error
is returned.
Here is a simple example, created using serde
's #[derive(Deserialize)]
macro:
use serde::Deserialize;
use std::path::PathBuf;
#[derive(Debug, Deserialize)]
#[serde(expecting = "An example program")]
struct Args {
path: PathBuf,
#[serde(alias = "f")]
force: bool,
}
fn main() {
let args = match serde_args::from_env::<Args>() {
Ok(args) => args,
Err(error) => {
println!("{error}");
return;
}
};
println!("{args:?}");
}
Running the above program with no provided arguments will display the following help output:
An example program
USAGE: serde_args.exe [options] <path>
Required Arguments:
<path>
Global Options:
-f --force
Override Options:
-h --help Display this message.
Running the program with example arguments of README.md -f
will show the parsed arguments:
Args { path: "README.md", force: true }
This crate is guaranteed to compile on stable rustc 1.74.0
and up.
This project is licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.