]> git.lizzy.rs Git - enumset.git/commitdiff
Merge branch 'master' of github.com:Lymia/enumset
authorAlissa Rao <lymia@lymiahugs.com>
Mon, 5 Jul 2021 21:15:56 +0000 (14:15 -0700)
committerAlissa Rao <lymia@lymiahugs.com>
Mon, 5 Jul 2021 21:15:56 +0000 (14:15 -0700)
enumset/src/lib.rs
enumset_derive/Cargo.toml

index cbf9922ea4bcf21826f5457ff845fdf5a044c49e..783d58d96a4a4bcc91ddbb51532cddf0742fce45 100644 (file)
@@ -562,6 +562,7 @@ impl <T: EnumSetType + Debug> Debug for EnumSet<T> {
     }
 }
 
+#[allow(clippy::derive_hash_xor_eq)] // This impl exists to change trait bounds only.
 impl <T: EnumSetType> Hash for EnumSet<T> {
     fn hash<H: Hasher>(&self, state: &mut H) {
         self.__priv_repr.hash(state)
index 58876ddff2be32ebc5ad5fe2624b0832b46e132d..106b25c472fdfb5072f9472165079277ca6237e7 100644 (file)
@@ -18,7 +18,7 @@ proc-macro = true
 serde = []
 
 [dependencies]
-darling = "0.12.0"
+darling = "0.13.0"
 syn = "1"
 quote = "1"
 proc-macro2 = "1"