chore: prepare sqlx-rt v0.1.0

This commit is contained in:
Ryan Leckey 2020-07-26 23:59:58 -07:00
parent 7bc3133f70
commit 116fbc1942
2 changed files with 8 additions and 3 deletions

2
Cargo.lock generated
View File

@ -2580,7 +2580,7 @@ dependencies = [
[[package]]
name = "sqlx-rt"
version = "0.1.0-pre"
version = "0.1.0"
dependencies = [
"actix-rt",
"actix-threadpool",

View File

@ -1,9 +1,14 @@
[package]
name = "sqlx-rt"
version = "0.1.0-pre"
version = "0.1.0"
repository = "https://github.com/launchbadge/sqlx"
license = "MIT OR Apache-2.0"
description = "Runtime abstraction used by SQLx, the Rust SQL toolkit. Not intended to be used directly."
edition = "2018"
authors = [
"Ryan Leckey <leckey.ryan@gmail.com>",
"Austin Bonander <austin.bonander@gmail.com>",
]
[features]
runtime-actix = [ "actix-rt", "actix-threadpool", "tokio", "tokio-native-tls", "once_cell" ]
@ -18,4 +23,4 @@ async-std = { version = "1.6.0", features = [ "unstable" ], optional = true }
tokio = { version = "0.2.21", optional = true, features = [ "blocking", "fs", "tcp", "uds", "macros", "rt-core", "rt-threaded", "time", "dns", "io-util" ] }
tokio-native-tls = { version = "0.1.0", optional = true }
native-tls = "0.2.4"
once_cell = { version = "1.3", features = ["std"], optional = true }
once_cell = { version = "1.4", features = ["std"], optional = true }