Rusqlite Changelog
Release notes for the rusqlite_migration library. Version 2.0.0 Alpha 1 Breaking changes Remove the alpha-async-tokio-rusqlite Feature As the name of the feature suggest, we have had experimental support for async using tokio for a while now. Supporting that feature has been quite a big burden, introducing some duplicated code in the AsyncMigrations struct in particular, as well as a whole set of very similar tests. Plus the benefit of async is limited here, because everything gets executed in a blocking fashion in sqlite anyway. ...