Releases: programatik29/tokio-rusqlite
Releases · programatik29/tokio-rusqlite
v0.6.0
v0.5.1
v0.5.0
- updated: To latest rusqlite version (
0.30
). - added: Added
params
macro export fromrusqlite
crate. - breaking:
Connection::call
now takestokio_rusqlite::Result
instead
ofrusqlite::Result
. - added: Added
Error::Other
variant for application
specific errors. - added: Added
Connection::call_unwrap
method.
v0.4.0
- added: Added
Connection::close
method. - added: Added
tokio_rusqlite::Error
type. - breaking: All
Connection
methods now returnResult<_, tokio_rusqlite::Error>
. - updated: To latest [rusqlite] version(
0.29
).
v0.3.0
v0.2.0
- changed: Now using unbounded
crossbeam-channel
instead of bounded
std::sync::mpsc
channel internally. - changed: Channel send errors in background database thread are now
ignored instead of panicking.
v0.1.0
Initial release.