17e2e9c0cSopenharmony_ci#![doc(html_root_url = "https://docs.rs/serde_derive_internals/0.29.0")] 27e2e9c0cSopenharmony_ci// Ignored clippy lints 37e2e9c0cSopenharmony_ci#![allow( 47e2e9c0cSopenharmony_ci clippy::cognitive_complexity, 57e2e9c0cSopenharmony_ci // clippy bug: https://github.com/rust-lang/rust-clippy/issues/7575 67e2e9c0cSopenharmony_ci clippy::collapsible_match, 77e2e9c0cSopenharmony_ci clippy::derive_partial_eq_without_eq, 87e2e9c0cSopenharmony_ci // clippy bug: https://github.com/rust-lang/rust-clippy/issues/6797 97e2e9c0cSopenharmony_ci clippy::manual_map, 107e2e9c0cSopenharmony_ci clippy::missing_panics_doc, 117e2e9c0cSopenharmony_ci clippy::redundant_field_names, 127e2e9c0cSopenharmony_ci clippy::result_unit_err, 137e2e9c0cSopenharmony_ci clippy::should_implement_trait, 147e2e9c0cSopenharmony_ci clippy::trivially_copy_pass_by_ref, 157e2e9c0cSopenharmony_ci clippy::wildcard_in_or_patterns, 167e2e9c0cSopenharmony_ci // clippy bug: https://github.com/rust-lang/rust-clippy/issues/5704 177e2e9c0cSopenharmony_ci clippy::unnested_or_patterns, 187e2e9c0cSopenharmony_ci)] 197e2e9c0cSopenharmony_ci// Ignored clippy_pedantic lints 207e2e9c0cSopenharmony_ci#![allow( 217e2e9c0cSopenharmony_ci clippy::doc_markdown, 227e2e9c0cSopenharmony_ci clippy::enum_glob_use, 237e2e9c0cSopenharmony_ci clippy::items_after_statements, 247e2e9c0cSopenharmony_ci clippy::let_underscore_untyped, 257e2e9c0cSopenharmony_ci clippy::manual_assert, 267e2e9c0cSopenharmony_ci clippy::match_same_arms, 277e2e9c0cSopenharmony_ci // clippy bug: https://github.com/rust-lang/rust-clippy/issues/6984 287e2e9c0cSopenharmony_ci clippy::match_wildcard_for_single_variants, 297e2e9c0cSopenharmony_ci clippy::missing_errors_doc, 307e2e9c0cSopenharmony_ci clippy::module_name_repetitions, 317e2e9c0cSopenharmony_ci clippy::must_use_candidate, 327e2e9c0cSopenharmony_ci clippy::return_self_not_must_use, 337e2e9c0cSopenharmony_ci clippy::similar_names, 347e2e9c0cSopenharmony_ci clippy::single_match_else, 357e2e9c0cSopenharmony_ci clippy::struct_excessive_bools, 367e2e9c0cSopenharmony_ci clippy::too_many_lines, 377e2e9c0cSopenharmony_ci clippy::unused_self, 387e2e9c0cSopenharmony_ci clippy::wildcard_imports 397e2e9c0cSopenharmony_ci)] 407e2e9c0cSopenharmony_ci 417e2e9c0cSopenharmony_ciextern crate proc_macro2; 427e2e9c0cSopenharmony_ciextern crate quote; 437e2e9c0cSopenharmony_ciextern crate syn; 447e2e9c0cSopenharmony_ci 457e2e9c0cSopenharmony_ci#[cfg_attr(serde_build_from_git, path = "../serde_derive/src/internals/mod.rs")] 467e2e9c0cSopenharmony_ci#[cfg_attr(not(serde_build_from_git), path = "src/mod.rs")] 477e2e9c0cSopenharmony_cimod internals; 487e2e9c0cSopenharmony_ci 497e2e9c0cSopenharmony_cipub use internals::*; 50