cot 0.2.1

The Rust web framework for lazy developers.
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(all(
    feature = "db",
    not(any(feature = "sqlite", feature = "postgres", feature = "mysql"))
))]
compile_error!("feature \"db\" requires one of: \"sqlite\", \"postgres\", \"mysql\" to be enabled");

fn main() {
    // do nothing; this only checks the feature flags
}