misc_utils 1.3.0

A small collection of convenient and utility functions developed for personal use.
Documentation
[package]
name = "misc_utils"
version = "1.3.0"
authors = ["Jonas Bushart <jonas@bushart.org>"]
description = "A small collection of convenient and utility functions developed for personal use."
documentation = "https://docs.rs/misc_utils/"
repository = "https://github.com/jonasbb/rust_misc_utils"
readme = "README.md"
keywords = ["misc", "utils", "convenience"]
license = "Unlicense"

[lib]
name = "misc_utils"
path = "src/lib.rs"

[dependencies]
bzip2 = "0.3"
error-chain = "0.11"
flate2 = "0.2"
log = "0.3"
serde = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }
xz2 = "0.1"

[features]
default = ["jsonl"]
# A nice multi-threaded JSONL iterator which puts file reading and JSON parsing into its own
# threads.
jsonl = ["serde", "serde_json"]

[dev-dependencies]
pretty_assertions = "0.3"
# Optional dev-dependencies are not a thing :(
serde_derive = "1.0"
tempfile = "2.0"

[package.metadata.docs.rs]
# https://github.com/onur/docs.rs/pull/131
all-features = true
default-target = "x86_64-unknown-linux-gnu"