1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Enable at some point in the future
// #![forbid(missing_docs)]

#![doc(html_root_url = "https://docs.dfstoryteller.com/rust-docs/")]
#![doc(html_favicon_url = "https://docs.dfstoryteller.com/favicon/favicon-16x16.png")]
#![doc(html_logo_url = "https://docs.dfstoryteller.com/logo.svg")]

//! # DF Storyteller - Core objects Documentation
//!
//! In this crate are all the object that are used to convert from and to when the
//! application is running. These are also the objects that are returned from the API.
//!
//! Most of the documentation from the API comes from this crate.
//!

pub mod bufreader;
pub mod config;
mod create_new;
pub mod deserialize_best_effort;
pub mod df_st_info;
pub mod df_world;
pub mod fillable;
pub mod git_issue;
pub mod has_unknown;
pub mod item_count;
pub mod positions;
pub mod schema_example;
pub mod site_map_images;
pub mod world_map_images;

pub use deserialize_best_effort::*;
pub use df_st_info::*;
pub use df_world::*;
pub use fillable::*;
pub use git_issue::GitIssue;
pub use has_unknown::*;
pub use positions::*;
pub use schema_example::*;
pub use site_map_images::*;
pub use world_map_images::*;