create-rust-app 11.0.3

Set up a modern rust+react web app by running one command.
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "database_sqlite")]
mod sqlite;
#[cfg(feature = "database_sqlite")]
pub use sqlite::*;

#[cfg(feature = "database_postgres")]
mod postgres;
#[cfg(feature = "database_postgres")]
pub use postgres::*;