ddnet_accounts_types/lib.rs
1//! This crate contains custom types used for the account system.
2//! It should generally not depend on crates that cannot be compiled
3//! to all rust targets (e.g. WASM).
4
5#![deny(missing_docs)]
6#![deny(warnings)]
7#![deny(clippy::nursery)]
8#![deny(clippy::all)]
9
10/// Types related to an account on the account server
11pub mod account_id;