mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-03-13 17:27:50 +00:00
Update README.md
This commit is contained in:
parent
614df7fb66
commit
bb617f6fa1
@ -1,13 +1,13 @@
|
||||
# SQLx
|
||||
|
||||
The SQL Toolkit for Rust. Fast, Safe, and Asynchronous.
|
||||
|
||||
* **Asynchronous**. Handle thousands of database connections from a single thread.
|
||||
|
||||
* **Native**. SQLx is a pure Rust† toolkit for SQL. Where possible, drivers are written from scratch, in Rust, utilizing the modern (as of Aug. 2019) ecosystem (the `runtime` crate) for asynchronous network services development.
|
||||
|
||||
* **Modular**. _TO BE WRITTEN_
|
||||
|
||||
* **Fast**. _TO BE WRITTEN_
|
||||
|
||||
* **Native**. SQLx is a pure Rust† toolkit for SQL. Where possible, drivers are written from scratch, in Rust, utilizing the modern (as of Aug. 2019) ecosystem (the `runtime` crate) for asynchronous network services development.
|
||||
|
||||
* **Agnostic**. SQLx is agnostic over the database engine and can operate against a variety of database backends with the backend chosen **at compile-time** through generic constraints **or at runtime** with a slight performance loss (due to dynamic dispatch).
|
||||
|
||||
<sub><sup>† The SQLite driver (which does not yet exist) uses the libsqlite3 C library as SQLite is an embedded database (the only way we could be pure Rust for SQLite is by porting _all_ of SQLite to Rust).</sup></sub>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user