[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"
[dependencies.serde_json]
optional = true
version = "1.0"
[dependencies.walkdir]
optional = true
version = "2.5"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.quickcheck]
version = "1.0"
[features]
default = ["std"]
fs = ["walkdir"]
json = ["serde", "serde_json"]
std = []
[lib]
name = "toolchest"
path = "src/lib.rs"
[package]
authors = ["Your Name <email@example.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "data-structures", "text-processing"]
description = "Essential utility collection for Rust - the missing complement to itertools"
documentation = "https://docs.rs/toolchest"
edition = "2021"
exclude = [".github/*", "tests/*", "benches/*", "examples/*", ".gitignore"]
homepage = "https://github.com/danjloveless/toolchest"
keywords = ["utility", "utils", "helpers", "toolkit", "lodash"]
license = "MIT OR Apache-2.0"
name = "toolchest"
readme = "README.md"
repository = "https://github.com/danjloveless/toolchest"
rust-version = "1.70.0"
version = "0.0.1"
[profile.bench]
inherits = "release"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3