sql-middleware 0.7.0

Lightweight async wrappers for tokio-postgres, rusqlite, turso, and tiberius.
Documentation
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug unit tests in library 'sqlx_middleware'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--lib",
                    "--package=sqlx-middleware",
                ],
                "filter": {
                    "name": "sqlx_middleware",
                    "kind": "lib"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}",
        },{
            "name": "SQLite Benchmark",
            "type": "lldb",
            "request": "launch",
            "program": "${workspaceFolder}/target/release/deps/database_benchmark-026012cd6f6eb1f2",
            "args": [],
            "cwd": "${workspaceFolder}",
            "env": {
                "RUST_BACKTRACE": "1"
            },
            "stopOnEntry": false,
            "sourceLanguages": ["rust"]
        }
    ]
}