2017-04-13 17:34:42 -07:00
|
|
|
// Copyright 2017 Serde Developers
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2018-04-14 20:30:18 -07:00
|
|
|
#![doc(html_root_url = "https://docs.rs/serde_derive_internals/0.23.1")]
|
2018-04-12 22:58:24 -07:00
|
|
|
#![cfg_attr(
|
|
|
|
feature = "cargo-clippy",
|
|
|
|
allow(cyclomatic_complexity, doc_markdown, match_same_arms, redundant_field_names)
|
|
|
|
)]
|
2017-04-20 08:11:31 -07:00
|
|
|
|
2017-04-02 21:42:07 -07:00
|
|
|
#[macro_use]
|
2018-01-08 21:49:09 -08:00
|
|
|
extern crate syn;
|
2016-06-30 19:53:57 -07:00
|
|
|
|
2018-01-09 20:34:29 -08:00
|
|
|
extern crate proc_macro2;
|
|
|
|
|
2018-05-05 23:06:16 -07:00
|
|
|
#[path = "src/mod.rs"]
|
|
|
|
mod internals;
|
2016-06-30 19:53:57 -07:00
|
|
|
|
2018-05-05 23:06:16 -07:00
|
|
|
pub use internals::*;
|