libargs-rs 1.0.0

Safe Rust bindings for libargs — Unix/GNU-style argument parsing
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "libargs-rs"
version = "1.0.0"
build = "build.rs"
include = [
    "src/**/*",
    "tests/**/*",
    "build.rs",
    "../../args.c",
    "../../args_help.c",
    "../../args.h",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Rust bindings for libargs — Unix/GNU-style argument parsing"
homepage = "https://github.com/quantung-libraries/libargs"
readme = "README.md"
keywords = [
    "args",
    "argparse",
    "cli",
    "unix",
    "gnu",
]
categories = [
    "command-line-interface",
    "parsing",
]
license = "MIT"
repository = "https://github.com/quantung-libraries/libargs"

[lib]
name = "libargs"
crate-type = [
    "rlib",
    "staticlib",
]
path = "src/lib.rs"

[[bin]]
name = "libargs-demo"
path = "src/main.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[build-dependencies]