diffus 0.6.1

Finds the difference between two instances of any data structure. Supports: collections, Strings, Maps etc. Uses LCS where applicable. Also supports derive via `diffus-derive`.
Documentation
[dependencies.indexmap]
optional = true
version = "1"

[dependencies.itertools]
version = "0.8"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"

[dependencies.snake_case]
optional = true
version = "0.2"

[dependencies.uuid]
optional = true
version = ">=0.5"

[features]
default = []
indexmap-impl = ["indexmap"]
serialize-impl = ["serde", "indexmap/serde-1", "uuid/serde", "snake_case/serde"]
snake_case-impl = ["snake_case"]
uuid-impl = ["uuid"]

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

[package]
authors = ["Jim Holmström <jim.holmstroem@gmail.com>", "Johan Gardell <736172+gardell@users.noreply.github.com>"]
categories = ["algorithms", "data-structures"]
description = "Finds the difference between two instances of any data structure. Supports: collections, Strings, Maps etc. Uses LCS where applicable. Also supports derive via `diffus-derive`."
documentation = "https://docs.rs/diffus"
edition = "2018"
homepage = "https://github.com/distil/diffus"
keywords = ["algorithm", "diff", "difference", "data", "data-structure"]
license = "Apache-2.0"
name = "diffus"
publish = ["crates-io"]
readme = "../README.md"
repository = "https://github.com/distil/diffus"
version = "0.6.1"