Once again, this release was cut to ensure generated code passes lints.
Breaking changes
- Changed
TreeMatcher::new()
to acceptstd::fmt::Display
instead ofAsRef<str>
, since we convert to aString
withto_string()
regardless. This is very unlikely to break anything. - Changed
TreeNode::render_iter()
to acceptstd::fmt::Display
instead ofAsRef<str>
, since we use the parameters in format strings. This is very unlikely to break anything.
Changes
- Switched code to disable Clippy to use
cfg(clippy)
instead ofcfg(feature = "cargo-clippy")
. The feature has been deprecated.