[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"