summaryrefslogtreecommitdiffstats
path: root/third_party/rust/serde_with/tests/derives/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/serde_with/tests/derives/lib.rs')
-rw-r--r--third_party/rust/serde_with/tests/derives/lib.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/rust/serde_with/tests/derives/lib.rs b/third_party/rust/serde_with/tests/derives/lib.rs
new file mode 100644
index 0000000000..a43a3c3535
--- /dev/null
+++ b/third_party/rust/serde_with/tests/derives/lib.rs
@@ -0,0 +1,15 @@
+#![allow(
+ // clippy is broken and shows wrong warnings
+ // clippy on stable does not know yet about the lint name
+ unknown_lints,
+ // https://github.com/rust-lang/rust-clippy/issues/8867
+ clippy::derive_partial_eq_without_eq,
+)]
+
+mod deserialize_fromstr;
+mod serialize_display;
+#[path = "../utils.rs"]
+mod utils;
+
+use expect_test::expect;
+use utils::*;