//! Web of Things (in rust)
//!
//! This crate collects a number of subcrates that cover different aspects of [Web of
//! Things][architecture].
//!
//! The normal usage is to directly depend on the specific crates you may need to use:
//!
//! - [wot-td](https://crates.io/crates/wot-td)
//! - [wot-serve](https://crates.io/crates/wot-serve)
//!
//! [architecture]: https://www.w3.org/TR/wot-architecture11/
pub use wot_serve as serve;
pub use wot_td as td;
pub use Servient;
pub use Thing;