database_migration/lib.rs
1#![doc(html_root_url = "https://docs.rs/database-migration/0.1.0")]
2
3pub mod action;
4pub mod checksum;
5pub mod config;
6pub mod definition;
7pub mod error;
8pub mod migration;
9pub mod repository;
10pub mod result;
11
12#[cfg(any(test, feature = "proptest-support"))]
13pub mod proptest_support;
14
15#[cfg(any(test, feature = "test-dsl"))]
16pub mod test_dsl;
17
18// workaround for false positive 'unused extern crate' warnings until
19// Rust issue [#95513](https://github.com/rust-lang/rust/issues/95513) is fixed
20#[cfg(test)]
21mod dummy_extern_uses {
22    use version_sync as _;
23}