[package] name = "pretty_assertions" version = "1.4.0" authors = [ "Colin Kiegel ", "Florent Fayolle ", "Tom Milligan ", ] edition = "2018" description = "Overwrite `assert_eq!` and `assert_ne!` with drop-in replacements, adding colorful diffs." repository = "https://github.com/rust-pretty-assertions/rust-pretty-assertions" documentation = "https://docs.rs/pretty_assertions" license = "MIT OR Apache-2.0" categories = ["development-tools"] keywords = ["assert", "diff", "pretty", "color"] readme = "README.md" [features] default = ["std"] # Use the Rust standard library. # Exactly one of `std` and `alloc` is required. std = [] # Use the `alloc` crate. # Exactly one of `std` and `alloc` is required. alloc = [] # Enable unstable features. Requires nightly rustc. unstable = [] [dependencies] yansi = "0.5" diff = "0.1.12"