Database & Async Runtime
We need your support! ⭐
Thank you for using SeaORM. Please star our GitHub repo! Your support is vital to the continued development and maintenance of SeaORM.
First, add sea-orm to the [dependencies] section of Cargo.toml.
Cargo.toml
sea-orm = { version = "0.12", features = [ <DATABASE_DRIVER>, <ASYNC_RUNTIME>, "macros" ] }
You must choose a DATABASE_DRIVER and an ASYNC_RUNTIME. macros is needed if you use SeaORM's generated entities (most likely).
DATABASE_DRIVER
You can choose one or more from:
sqlx-mysql- SQLx MySQL and MariaDBsqlx-postgres- SQLx PostgreSQLsqlx-sqlite- SQLx SQLite
See also: SQLx docs.
ASYNC_RUNTIME
You have to choose one from:
runtime-async-std-native-tls, runtime-tokio-native-tls, runtime-async-std-rustls, runtime-tokio-rustls
Basically, they are in the form of runtime-ASYNC_RUNTIME-TLS_LIB:
ASYNC_RUNTIMEcan beasync-stdortokioTLS_LIBcan either benative-tlsorrustls
- Choose the ASYNC_RUNTIME corresponding to your Rust web framework:
| ASYNC_RUNTIME | Web Framework |
|---|---|
async-std | Tide |
tokio | Axum, Actix, Poem, Rocket |
native-tlsuses the platform's native security facilities, whilerustlsis an (almost) pure Rust implementation.
Extra features
debug-print- print every SQL statement to loggermock- mock interface for unit testingmacros- procedural macros for your conveniencewith-chrono- supportchronotypeswith-time- supporttimetypeswith-json- supportserde-jsontypeswith-rust_decimal- supportrust_decimaltypeswith-bigdecimal- supportbigdecimaltypeswith-uuid- supportuuidtypespostgres-array- support array types in Postgres (automatically enabled whensqlx-postgresfeature is turned on)sea-orm-internal- opt-in unstable internal APIs (for accessing re-export SQLx types)