[package] name = "printable" version = "2.2.0" authors = ["Andrew Sonin "] categories = ["value-formatting"] description = "Provides `std::fmt::Display` wrapper for iterators and tuples." keywords = ["printable", "formatting", "display", "iterator", "tuple"] documentation = "https://docs.rs/printable/" homepage = "https://github.com/andrewsonin/printable" repository = "https://github.com/andrewsonin/printable" license = "MIT" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] [lints.rust] rust_2018_idioms = { level = "warn", priority = 1 } unreachable_pub = "warn" missing_docs = "warn" missing_debug_implementations = "warn" [lints.clippy] undocumented_unsafe_blocks = "warn" pedantic = { level = "warn", priority = 1 } [features] # May violate backward compatibility and lead to compilation failure # even if the major semver versions of the underlying crates aren't updated. unstable-assert-no-drop = []