mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-24 14:37:59 +00:00
26 lines
669 B
Rust
26 lines
669 B
Rust
// 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.
|
|
|
|
#![doc(html_root_url = "https://docs.rs/serde_test/0.9.13")]
|
|
|
|
#[macro_use]
|
|
extern crate serde;
|
|
|
|
mod assert;
|
|
pub use assert::{assert_tokens, assert_ser_tokens, assert_ser_tokens_error, assert_de_tokens,
|
|
assert_de_tokens_error};
|
|
|
|
mod ser;
|
|
mod de;
|
|
|
|
mod token;
|
|
pub use token::Token;
|
|
|
|
mod error;
|
|
pub use error::Error;
|