2018-11-21 16:22:33 -06:00
|
|
|
#![doc(html_root_url = "https://docs.rs/serde_derive_internals/0.24.1")]
|
2018-09-12 01:05:31 -05:00
|
|
|
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
|
2018-04-13 00:58:24 -05:00
|
|
|
#![cfg_attr(
|
|
|
|
feature = "cargo-clippy",
|
2018-07-08 21:02:44 -05:00
|
|
|
allow(
|
|
|
|
cyclomatic_complexity,
|
2018-12-31 21:53:09 -06:00
|
|
|
redundant_field_names,
|
|
|
|
trivially_copy_pass_by_ref
|
2018-07-08 21:02:44 -05:00
|
|
|
)
|
2018-04-13 00:58:24 -05:00
|
|
|
)]
|
2017-04-20 10:11:31 -05:00
|
|
|
|
2017-04-02 23:42:07 -05:00
|
|
|
#[macro_use]
|
2018-01-08 23:49:09 -06:00
|
|
|
extern crate syn;
|
2016-06-30 21:53:57 -05:00
|
|
|
|
2018-01-09 22:34:29 -06:00
|
|
|
extern crate proc_macro2;
|
2018-12-11 00:15:46 -06:00
|
|
|
extern crate quote;
|
2018-01-09 22:34:29 -06:00
|
|
|
|
2018-05-06 01:06:16 -05:00
|
|
|
#[path = "src/mod.rs"]
|
|
|
|
mod internals;
|
2016-06-30 21:53:57 -05:00
|
|
|
|
2018-05-06 01:06:16 -05:00
|
|
|
pub use internals::*;
|