client_3dsdb/
lib.rs

1//! A client library for 3DS title DBs.
2//!
3//! This library can use multiple sources to get title data, each with pros and cons. Each source
4//! has its own module with associated structs and methods, accessible as features. So far there
5//! are:
6//!
7//! - xml: <http://3dsdb.com>
8//! - json: <https://github.com/hax0kartik/3dsdb>
9
10pub mod error;
11
12#[cfg(feature = "xml")]
13pub mod xml;
14#[cfg(feature = "json")]
15pub mod json;