mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-23 05:58:01 +00:00
11 lines
177 B
Rust
11 lines
177 B
Rust
#![cfg_attr(feature = "clippy", plugin(clippy))]
|
|
#![cfg_attr(feature = "clippy", feature(plugin))]
|
|
|
|
extern crate syn;
|
|
|
|
pub mod ast;
|
|
pub mod attr;
|
|
|
|
mod ctxt;
|
|
pub use ctxt::Ctxt;
|