rust-strings 0.6.4

`rust-strings` is a library to extract ascii strings from binary data
Documentation
# 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 = "rust-strings"
version = "0.6.4"
authors = ["iddohau@gmail.com"]
build = false
include = [
    "/LICENSE.txt",
    "/README.md",
    "/src",
    "/pyproject.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "`rust-strings` is a library to extract ascii strings from binary data"
homepage = "https://github.com/iddohau/rust-strings"
documentation = "https://docs.rs/rust-strings"
readme = "README.md"
keywords = [
    "strings",
    "encoding",
]
categories = ["encoding"]
license = "MIT"
repository = "https://github.com/iddohau/rust-strings"

[features]
cli = ["clap"]
python_bindings = ["pyo3"]

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

[[bin]]
name = "rust-strings"
path = "src/main.rs"
required-features = ["cli"]

[dependencies.clap]
version = "4.5.8"
features = ["derive"]
optional = true

[dependencies.pyo3]
version = "0.28"
features = ["extension-module"]
optional = true

[dev-dependencies.tempfile]
version = "3.10"