mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-23 07:08:02 +00:00
21 lines
380 B
Rust
21 lines
380 B
Rust
#![cfg_attr(feature = "clippy", feature(plugin))]
|
|
#![cfg_attr(feature = "clippy", plugin(clippy))]
|
|
|
|
#![cfg_attr(feature = "unstable-testing", feature(non_ascii_idents))]
|
|
|
|
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
extern crate serde;
|
|
extern crate serde_test;
|
|
|
|
#[macro_use]
|
|
mod macros;
|
|
|
|
mod test_annotations;
|
|
mod test_bytes;
|
|
mod test_de;
|
|
mod test_gen;
|
|
mod test_macros;
|
|
mod test_ser;
|