1#![deny(missing_debug_implementations)]
4#![deny(rustdoc::broken_intra_doc_links)]
5#![cfg_attr(test, deny(warnings))]
6
7pub mod activity;
15pub mod address;
16pub mod category;
17pub mod clearance;
18pub mod comment;
19pub mod contact;
20pub mod email;
21pub mod event;
22pub mod geo;
23pub mod id;
24pub mod links;
25pub mod location;
26pub mod nonce;
27pub mod organization;
28pub mod password;
29pub mod place;
30pub mod rating;
31pub mod review;
32pub mod revision;
33pub mod subscription;
34pub mod tag;
35pub mod time;
36pub mod user;
37#[cfg(feature = "url")]
38pub mod url {
39 pub use url::{ParseError, Url};
40}
41#[cfg(not(feature = "url"))]
42pub mod url;
43
44#[cfg(any(test, feature = "builders"))]
45pub mod builders;