Remove deprecated stuff

This commit is contained in:
gwenn
2018-11-01 10:30:18 +01:00
parent ebc3609a09
commit 2357acd79e
4 changed files with 1 additions and 47 deletions

View File

@@ -1,11 +1,6 @@
use std::ops::Deref;
use {Connection, Result};
/// Old name for `TransactionBehavior`. `SqliteTransactionBehavior` is
/// deprecated.
#[deprecated(since = "0.6.0", note = "Use TransactionBehavior instead")]
pub type SqliteTransactionBehavior = TransactionBehavior;
/// Options for transaction behavior. See [BEGIN
/// TRANSACTION](http://www.sqlite.org/lang_transaction.html) for details.
#[derive(Copy, Clone)]
@@ -32,10 +27,6 @@ pub enum DropBehavior {
Panic,
}
/// Old name for `Transaction`. `SqliteTransaction` is deprecated.
#[deprecated(since = "0.6.0", note = "Use Transaction instead")]
pub type SqliteTransaction<'conn> = Transaction<'conn>;
/// Represents a transaction on a database connection.
///
/// ## Note