2019-11-21 23:29:40 +00:00
[ workspace ]
members = [
"." ,
2019-11-22 10:30:16 +00:00
"sqlx-core" ,
2020-05-26 07:39:00 +00:00
"sqlx-rt" ,
2019-11-21 23:29:40 +00:00
"sqlx-macros" ,
2020-03-02 04:07:59 +00:00
"sqlx-test" ,
2020-05-16 03:07:57 +00:00
"sqlx-cli" ,
2020-07-01 09:38:33 +00:00
"sqlx-bench" ,
2020-03-31 13:05:52 +00:00
"examples/mysql/todos" ,
2020-08-24 19:44:55 +00:00
"examples/postgres/json" ,
2020-03-30 23:35:07 +00:00
"examples/postgres/listen" ,
2020-09-25 18:11:08 +00:00
"examples/postgres/todos" ,
2020-11-18 14:25:40 +00:00
"examples/postgres/mockable-todos" ,
2021-08-16 23:33:42 +00:00
"examples/postgres/transaction" ,
2020-03-31 11:35:51 +00:00
"examples/sqlite/todos" ,
2019-11-21 23:29:40 +00:00
]
2019-06-06 13:02:55 +00:00
[ package ]
2019-06-23 03:54:43 +00:00
name = "sqlx"
2021-10-01 22:52:52 +00:00
version = "0.5.9"
2019-06-06 13:02:55 +00:00
license = "MIT OR Apache-2.0"
2019-12-28 01:31:01 +00:00
readme = "README.md"
repository = "https://github.com/launchbadge/sqlx"
documentation = "https://docs.rs/sqlx"
2020-03-19 05:48:46 +00:00
description = "🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite."
2019-06-06 13:02:55 +00:00
edition = "2018"
2021-04-16 01:38:50 +00:00
keywords = [ "database" , "async" , "postgres" , "mysql" , "sqlite" ]
categories = [ "database" , "asynchronous" ]
2019-11-20 17:05:21 +00:00
authors = [
2021-04-16 01:38:50 +00:00
"Ryan Leckey <leckey.ryan@gmail.com>" ,
"Austin Bonander <austin.bonander@gmail.com>" ,
"Chloe Ross <orangesnowfox@gmail.com>" ,
"Daniel Akhterov <akhterovd@gmail.com>" ,
2021-05-22 00:27:15 +00:00
]
2019-06-06 13:02:55 +00:00
2020-01-11 11:30:03 +00:00
[ package . metadata . docs . rs ]
2021-04-16 01:38:50 +00:00
features = [ "all" , "runtime-async-std-native-tls" ]
2020-01-22 21:10:10 +00:00
rustdoc-args = [ "--cfg" , "docsrs" ]
2020-01-11 11:30:03 +00:00
2019-08-07 06:20:50 +00:00
[ features ]
2021-04-16 01:38:50 +00:00
default = [ "macros" , "migrate" ]
macros = [ "sqlx-macros" ]
migrate = [ "sqlx-macros/migrate" , "sqlx-core/migrate" ]
2020-06-01 12:34:52 +00:00
# [deprecated] TLS is not possible to disable due to it being conditional on multiple features
# Hopefully Cargo can handle this in the future
2021-04-16 01:38:50 +00:00
tls = [ ]
2020-01-15 09:17:33 +00:00
2020-04-14 06:00:19 +00:00
# offline building support in `sqlx-macros`
2021-04-16 01:38:50 +00:00
offline = [ "sqlx-macros/offline" , "sqlx-core/offline" ]
2020-04-14 06:00:19 +00:00
2020-03-24 09:56:52 +00:00
# intended mainly for CI and docs
2021-04-16 01:38:50 +00:00
all = [ "tls" , "all-databases" , "all-types" ]
all-databases = [ "mysql" , "sqlite" , "postgres" , "mssql" , "any" ]
all-types = [
"bigdecimal" ,
"decimal" ,
"json" ,
"time" ,
"chrono" ,
"ipnetwork" ,
2021-07-19 23:55:53 +00:00
"mac_address" ,
2021-04-16 01:38:50 +00:00
"uuid" ,
"bit-vec" ,
"bstr" ,
"git2" ,
]
2020-03-24 09:56:52 +00:00
2020-10-20 10:29:24 +00:00
# previous runtimes, available as features for error messages better than just
# "feature doesn't exist"
runtime-actix = [ ]
runtime-async-std = [ ]
runtime-tokio = [ ]
# actual runtimes
2021-04-16 01:38:50 +00:00
runtime-actix-native-tls = [
"sqlx-core/runtime-actix-native-tls" ,
"sqlx-macros/runtime-actix-native-tls" ,
"_rt-actix" ,
]
runtime-async-std-native-tls = [
"sqlx-core/runtime-async-std-native-tls" ,
"sqlx-macros/runtime-async-std-native-tls" ,
"_rt-async-std" ,
]
runtime-tokio-native-tls = [
"sqlx-core/runtime-tokio-native-tls" ,
"sqlx-macros/runtime-tokio-native-tls" ,
"_rt-tokio" ,
]
2020-10-20 10:29:24 +00:00
2021-04-16 01:38:50 +00:00
runtime-actix-rustls = [
"sqlx-core/runtime-actix-rustls" ,
"sqlx-macros/runtime-actix-rustls" ,
"_rt-actix" ,
]
runtime-async-std-rustls = [
"sqlx-core/runtime-async-std-rustls" ,
"sqlx-macros/runtime-async-std-rustls" ,
"_rt-async-std" ,
]
runtime-tokio-rustls = [
"sqlx-core/runtime-tokio-rustls" ,
"sqlx-macros/runtime-tokio-rustls" ,
"_rt-tokio" ,
]
2020-10-20 10:21:01 +00:00
2020-10-20 10:29:24 +00:00
# for conditional compilation
_rt-actix = [ ]
_rt-async-std = [ ]
_rt-tokio = [ ]
2019-12-28 01:31:01 +00:00
# database
2021-04-16 01:38:50 +00:00
any = [ "sqlx-core/any" ]
postgres = [ "sqlx-core/postgres" , "sqlx-macros/postgres" ]
mysql = [ "sqlx-core/mysql" , "sqlx-macros/mysql" ]
sqlite = [ "sqlx-core/sqlite" , "sqlx-macros/sqlite" ]
mssql = [ "sqlx-core/mssql" , "sqlx-macros/mssql" ]
2019-12-28 01:31:01 +00:00
# types
2021-04-16 01:38:50 +00:00
bigdecimal = [ "sqlx-core/bigdecimal" , "sqlx-macros/bigdecimal" ]
decimal = [ "sqlx-core/decimal" , "sqlx-macros/decimal" ]
chrono = [ "sqlx-core/chrono" , "sqlx-macros/chrono" ]
ipnetwork = [ "sqlx-core/ipnetwork" , "sqlx-macros/ipnetwork" ]
2021-07-19 23:55:53 +00:00
mac_address = [ "sqlx-core/mac_address" , "sqlx-macros/mac_address" ]
2021-04-16 01:38:50 +00:00
uuid = [ "sqlx-core/uuid" , "sqlx-macros/uuid" ]
json = [ "sqlx-core/json" , "sqlx-macros/json" ]
time = [ "sqlx-core/time" , "sqlx-macros/time" ]
bit-vec = [ "sqlx-core/bit-vec" , "sqlx-macros/bit-vec" ]
bstr = [ "sqlx-core/bstr" ]
git2 = [ "sqlx-core/git2" ]
2019-08-07 06:20:50 +00:00
2019-06-06 13:02:55 +00:00
[ dependencies ]
2021-10-01 22:52:52 +00:00
sqlx-core = { version = "0.5.9" , path = "sqlx-core" , default-features = false }
sqlx-macros = { version = "0.5.9" , path = "sqlx-macros" , default-features = false , optional = true }
2019-07-26 16:20:09 +00:00
2019-08-28 18:01:55 +00:00
[ dev-dependencies ]
2020-06-07 23:29:46 +00:00
anyhow = "1.0.31"
time_ = { version = "0.2.16" , package = "time" }
futures = "0.3.5"
2021-04-09 07:31:07 +00:00
env_logger = "0.8.3"
2021-04-16 01:38:50 +00:00
async-std = { version = "1.8.0" , features = [ "attributes" ] }
tokio = { version = "1.0.1" , features = [ "full" ] }
2019-12-03 23:31:49 +00:00
dotenv = "0.15.0"
2020-03-11 20:24:05 +00:00
trybuild = "1.0.24"
2020-05-30 21:51:57 +00:00
sqlx-rt = { path = "./sqlx-rt" }
2020-03-02 04:07:59 +00:00
sqlx-test = { path = "./sqlx-test" }
2020-09-30 18:34:14 +00:00
paste = "1.0.1"
2021-04-16 01:38:50 +00:00
serde = { version = "1.0.111" , features = [ "derive" ] }
2020-06-07 23:29:46 +00:00
serde_json = "1.0.53"
2020-07-10 09:11:43 +00:00
url = "2.1.1"
2021-12-29 23:23:02 +00:00
rand = "0.8.4"
rand_xoshiro = "0.6.0"
hex = "0.4"
2020-06-27 11:07:40 +00:00
#
# Any
#
[ [ test ] ]
name = "any"
path = "tests/any/any.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "any" ]
2020-06-27 11:07:40 +00:00
2020-07-14 13:07:29 +00:00
[ [ test ] ]
name = "any-pool"
path = "tests/any/pool.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "any" ]
2020-07-14 13:07:29 +00:00
2020-07-23 21:46:27 +00:00
#
# Migrations
#
[ [ test ] ]
name = "migrate-macro"
path = "tests/migrate/macro.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "macros" , "migrate" ]
2020-07-23 21:46:27 +00:00
2020-05-30 21:51:57 +00:00
#
# SQLite
#
2020-01-29 02:56:25 +00:00
2020-03-11 18:01:17 +00:00
[ [ test ] ]
name = "sqlite"
2020-05-30 21:51:57 +00:00
path = "tests/sqlite/sqlite.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "sqlite" ]
2020-03-11 18:01:17 +00:00
2020-03-17 04:05:48 +00:00
[ [ test ] ]
2020-05-30 21:51:57 +00:00
name = "sqlite-types"
path = "tests/sqlite/types.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "sqlite" ]
2020-03-13 09:21:29 +00:00
2020-03-20 09:21:15 +00:00
[ [ test ] ]
2020-05-30 21:51:57 +00:00
name = "sqlite-describe"
path = "tests/sqlite/describe.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "sqlite" ]
2020-03-13 09:21:29 +00:00
2020-06-06 04:02:24 +00:00
[ [ test ] ]
name = "sqlite-macros"
path = "tests/sqlite/macros.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "sqlite" , "macros" ]
2020-06-06 04:02:24 +00:00
2021-03-18 23:12:00 +00:00
[ [ test ] ]
name = "sqlite-derives"
path = "tests/sqlite/derives.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "sqlite" , "macros" ]
2021-03-18 23:12:00 +00:00
2020-05-30 21:51:57 +00:00
#
# MySQL
#
2019-12-28 01:31:01 +00:00
[ [ test ] ]
name = "mysql"
2020-05-30 21:51:57 +00:00
path = "tests/mysql/mysql.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "mysql" ]
2019-12-28 01:31:01 +00:00
2020-03-11 08:40:57 +00:00
[ [ test ] ]
2020-05-30 21:51:57 +00:00
name = "mysql-types"
path = "tests/mysql/types.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "mysql" ]
2020-03-11 08:40:57 +00:00
2020-03-18 02:26:59 +00:00
[ [ test ] ]
2020-05-30 21:51:57 +00:00
name = "mysql-describe"
path = "tests/mysql/describe.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "mysql" ]
2020-03-18 02:26:59 +00:00
2020-06-06 04:02:24 +00:00
[ [ test ] ]
name = "mysql-macros"
path = "tests/mysql/macros.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "mysql" , "macros" ]
2020-06-06 04:02:24 +00:00
2020-05-30 21:51:57 +00:00
#
# PostgreSQL
#
2019-12-28 01:31:01 +00:00
2020-03-01 10:01:00 +00:00
[ [ test ] ]
2020-05-30 21:51:57 +00:00
name = "postgres"
path = "tests/postgres/postgres.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "postgres" ]
2020-03-01 10:01:00 +00:00
2019-11-23 09:02:56 +00:00
[ [ test ] ]
name = "postgres-types"
2020-05-30 21:51:57 +00:00
path = "tests/postgres/types.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "postgres" ]
2019-11-23 09:02:56 +00:00
2020-03-18 02:26:59 +00:00
[ [ test ] ]
2020-05-30 21:51:57 +00:00
name = "postgres-describe"
path = "tests/postgres/describe.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "postgres" ]
2020-06-03 03:47:57 +00:00
2020-06-06 03:28:21 +00:00
[ [ test ] ]
name = "postgres-macros"
path = "tests/postgres/macros.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "postgres" , "macros" ]
2020-06-07 09:35:12 +00:00
2020-06-12 22:20:32 +00:00
[ [ test ] ]
name = "postgres-derives"
path = "tests/postgres/derives.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "postgres" , "macros" ]
2020-06-12 22:20:32 +00:00
2020-06-03 03:47:57 +00:00
#
# Microsoft SQL Server (MSSQL)
#
[ [ test ] ]
name = "mssql"
path = "tests/mssql/mssql.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "mssql" ]
2020-06-06 19:09:46 +00:00
[ [ test ] ]
name = "mssql-types"
path = "tests/mssql/types.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "mssql" ]
2020-06-07 08:59:59 +00:00
[ [ test ] ]
name = "mssql-describe"
path = "tests/mssql/describe.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "mssql" ]
2020-06-07 23:29:46 +00:00
[ [ test ] ]
name = "mssql-macros"
path = "tests/mssql/macros.rs"
2021-04-16 01:38:50 +00:00
required-features = [ "mssql" , "macros" ]