sqliter 0.6.0

An opinionated async connnection/migration handler for rusqlite to make light work of using sqlite databases for small apps
Documentation
# 0.6.0

- Update to `async-rusqlite` 0.5.0 (and rusqlite 0.37.0 as a result).

# 0.5.1

- Move tempfile dependency to dev dependencies (not sure when/how it ended up as an actual one!)

# 0.5.0

- Allow non-transactional migrations to be performed via `Migrations::add_non_transactionally()`.

# 0.4.0

- Allow `on_close` handler to be attached when constructing our database connection.

# 0.3.0

- Panic if migration with version 0 or less given (it wouldn't work as hoped).
- Add a bunch of tests.

# 0.2.0

- `Migrations` also now has a default error parameter.
- `Migrations::add` consumes/returns `self` now for slightly nicer usage.

# 0.1.1

- The `Error` parameter on `ConnectionBuilder` now defaults to `rusqlite::Error`

# 0.1.0

Initial release.