Minor change to the tagline

This commit is contained in:
Ryan Leckey 2019-09-10 23:31:12 -07:00
parent b22203f98c
commit b52c0e3d8e
2 changed files with 3 additions and 4 deletions

View File

@ -5,7 +5,7 @@ authors = [
"Ryan Leckey <leckey.ryan@gmail.com>" "Ryan Leckey <leckey.ryan@gmail.com>"
] ]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
description = "Asynchronous and expressive database client in pure Rust." description = "The Rust SQL Toolkit."
edition = "2018" edition = "2018"
[features] [features]
@ -21,7 +21,6 @@ byteorder = { version = "1.3.2", default-features = false }
bytes = "0.4.12" bytes = "0.4.12"
crossbeam-queue = "0.1.2" crossbeam-queue = "0.1.2"
crossbeam-utils = { version = "0.6.6", default-features = false } crossbeam-utils = { version = "0.6.6", default-features = false }
# failure = "0.1.5"
futures-channel-preview = "0.3.0-alpha.18" futures-channel-preview = "0.3.0-alpha.18"
futures-core-preview = "0.3.0-alpha.18" futures-core-preview = "0.3.0-alpha.18"
futures-util-preview = "0.3.0-alpha.18" futures-util-preview = "0.3.0-alpha.18"

View File

@ -1,6 +1,6 @@
# SQLx # SQLx
The SQL Toolkit for Rust. Fast, Safe, and Asynchronous. The Rust SQL Toolkit.
* **Asynchronous**. Handle thousands of database connections from a single thread. * **Asynchronous**. Handle thousands of database connections from a single thread.
@ -10,7 +10,7 @@ The SQL Toolkit for Rust. Fast, Safe, and Asynchronous.
* **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). * **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> <sub><sup>† The SQLite driver (which does not yet exist) will use 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>
## License ## License