]> git.proxmox.com Git - rustc.git/blame - src/vendor/serde_derive_internals/src/lib.rs
New upstream version 1.23.0+dfsg1
[rustc.git] / src / vendor / serde_derive_internals / src / lib.rs
CommitLineData
3b2f2976 1// Copyright 2017 Serde Developers
223e47cc
LB
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
abe05a73 9#![doc(html_root_url = "https://docs.rs/serde_derive_internals/0.17.0")]
e9174d1e 10
3b2f2976
XL
11extern crate syn;
12#[macro_use]
13extern crate synom;
e9174d1e 14
3b2f2976
XL
15pub mod ast;
16pub mod attr;
17
18mod ctxt;
19pub use ctxt::Ctxt;
20
21mod case;
22mod check;