diff --git a/acrate_database/src/lib.rs b/acrate_database/src/lib.rs index 56c7d54..17af59e 100644 --- a/acrate_database/src/lib.rs +++ b/acrate_database/src/lib.rs @@ -1,8 +1,9 @@ -//! Database schema and migrations for the [`acrate`] project. +//! Database schema, migrations, and high level database-reliant structures for the [`acrate`] project. +/// Database schema information automatically generated by [`diesel`]. +/// +/// Configured by `diesel.toml`. mod schema; +/// Tables related to web page metadata, XRD and JRD, `host-meta`, `WebFinger`, and so on. pub mod meta; - -pub use diesel; -pub use diesel_async;