sqlx-db-tester 0.6.4

A simple tool to test sqlx with PostgreSQL and MySQL. It will automatically create a database and drop it after the test.
Documentation
[dependencies.anyhow]
version = "1"

[dependencies.csv]
version = "1.4"

[dependencies.itertools]
version = "0.14"

[dependencies.sqlx]
features = ["runtime-tokio-rustls"]
version = "0.8"

[dependencies.tokio]
features = ["macros", "rt", "rt-multi-thread"]
version = "1.48"

[dependencies.uuid]
features = ["v4"]
version = "1.18"

[features]
default = ["postgres"]
mysql = ["sqlx/mysql"]
postgres = ["sqlx/postgres"]

[lib]
name = "sqlx_db_tester"
path = "src/lib.rs"

[package]
authors = ["Tyr Chen <tyr.chen@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools"]
description = "A simple tool to test sqlx with PostgreSQL and MySQL. It will automatically create a database and drop it after the test."
documentation = "https://docs.rs/sqlx-db-tester"
edition = "2024"
homepage = "https://github.com/tyrchen/sqlx-db-tester"
keywords = ["sqlx", "postgres", "mysql", "database", "test"]
license = "MIT"
name = "sqlx-db-tester"
readme = "README.md"
repository = "https://github.com/tyrchen/sqlx-db-tester"
version = "0.6.4"