# 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.0" authors = ["iddohau@gmail.com"] include = [ "/LICENSE.txt", "/README.md", "/src", "/pyproject.toml", ] 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" [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.4.18" features = ["derive"] optional = true [dependencies.pyo3] version = "0.20.2" features = ["extension-module"] optional = true [dev-dependencies.tempfile] version = "3.9" [features] cli = ["clap"] python_bindings = ["pyo3"]