fuzzmutator 0.1.4

This is a tiny library that can be used to mutate fuzzing data on a bit-level.
Documentation
[package]
name = "fuzzmutator"
version = "0.1.4"
authors = ["Debily"]
description = "This is a tiny library that can be used to mutate fuzzing data on a bit-level."
repository = "https://github.com/Debily/fuzzmutator-rs.git"
readme = "README.md"
keywords = ["fuzzing", "fuzzer", "mutator", "mutation", "debily"]
categories = ["development-tools::testing"]
license-file = "LICENSE"

[profile.dev]
opt-level = 0
debug = true
rpath = false
lto = false
debug-assertions = true
codegen-units = 1
panic = 'unwind'

[profile.release]
opt-level = 3
debug = false
rpath = false
lto = false
debug-assertions = false
codegen-units = 1
panic = 'unwind'

[dependencies]
rand="0.3.0"