1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! Provides GraphQLType implementations for some external types

#[doc(hidden)]
pub mod serde;

#[cfg(feature = "chrono")]
/// GraphQL support for [chrono](https://github.com/chronotope/chrono) types.
pub mod chrono;

#[cfg(feature = "chrono-tz")]
/// GraphQL support for [chrono-tz](https://github.com/chronotope/chrono-tz) types.
pub mod chrono_tz;

#[cfg(feature = "url")]
/// GraphQL support for [url](https://github.com/servo/rust-url) types.
pub mod url;

#[cfg(feature = "uuid")]
/// GraphQL support for [uuid](https://doc.rust-lang.org/uuid/uuid/struct.Uuid.html) types.
pub mod uuid;

#[cfg(feature = "bson")]
/// GraphQL support for [bson](https://github.com/mongodb/bson-rust) types.
pub mod bson;