tailwind-css-fixes 0.12.31

Fixes for tailwind-css crate (Compile tailwind short instructions to css)
Documentation
1
2
3
4
5
6
7
8
9
use super::*;

#[allow(clippy::derive_hash_xor_eq)]
impl Hash for CssBundle {
    fn hash<H: Hasher>(&self, state: &mut H) {
        self.attribute.hash(state);
        self.addition.hash(state);
    }
}