v18.0.0
Breaking changes:
Conn::{query, first, *_exec, ...}
were removed in favor ofQueryable
trait (see crate docs);Pool::{prepare, *_exec, ...}
were removed in favor ofTextQuery
andBinQuery
traits (see crate docs);- helpers for batch statement execution were added in forms of
Queryable::batch_exec
method andBatchQuery
trait (see crate docs); Stmt
was removed in favor of the newStatement
structure, which is a thin wrapper around statement identifier. There are few caveats, please consult the corresponding section in the crate docs;OptsBuilder
andSslOpts
methods now takes self by value;QueryResult
interface was altered;start_transaction
now takes newTxOpts
structure;