rust-strings 0.1.0

`rust-strings` is a library to extract ascii strings from binary data
Documentation
[[bin]]
name = "rust-strings"
path = "src/main.rs"
required-features = ["cli"]
[dependencies.clap]
features = ["derive"]
optional = true
version = "3.0.8"

[dependencies.pyo3]
features = ["extension-module"]
optional = true
version = "0.15.1"
[dev-dependencies.tempfile]
version = "3.3"

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

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

[package]
authors = ["iddohau@gmail.com"]
categories = ["encoding"]
description = "`rust-strings` is a library to extract ascii strings from binary data"
documentation = "https://docs.rs/rust-strings"
edition = "2021"
homepage = "https://github.com/iddohau/rust-strings"
include = ["/LICENSE.txt", "/README.md", "/src"]
keywords = ["strings", "encoding"]
license = "MIT"
name = "rust-strings"
readme = "README.md"
repository = "https://github.com/iddohau/rust-strings"
resolver = "2"
version = "0.1.0"