From 116fbc1942dfc4535eb850d1511f0d144fb2dd15 Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Sun, 26 Jul 2020 23:59:58 -0700 Subject: [PATCH] chore: prepare sqlx-rt v0.1.0 --- Cargo.lock | 2 +- sqlx-rt/Cargo.toml | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 822e280d..4c0b8fd4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2580,7 +2580,7 @@ dependencies = [ [[package]] name = "sqlx-rt" -version = "0.1.0-pre" +version = "0.1.0" dependencies = [ "actix-rt", "actix-threadpool", diff --git a/sqlx-rt/Cargo.toml b/sqlx-rt/Cargo.toml index e8350211..3aee80fc 100644 --- a/sqlx-rt/Cargo.toml +++ b/sqlx-rt/Cargo.toml @@ -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 ", + "Austin Bonander ", +] [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 }