1 // Copyright 2017 Serde Developers 2 // 3 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or 4 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license 5 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your 6 // option. This file may not be copied, modified, or distributed 7 // except according to those terms. 8 9 #![doc(html_root_url = "https://docs.rs/serde_derive_internals/0.19.0")] 10 11 extern crate syn; 12 #[macro_use] 13 extern crate synom; 14 15 pub mod ast; 16 pub mod attr; 17 18 mod ctxt; 19 pub use ctxt::Ctxt; 20 21 mod case; 22 mod check; 23