├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── dependabot.yml └── workflows │ └── ci.yaml ├── .gitignore ├── Cargo.toml ├── README.md └── src ├── lib.rs ├── mysql.rs ├── pg.rs └── sqlite.rs /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbr/async-sqlx-session/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbr/async-sqlx-session/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbr/async-sqlx-session/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbr/async-sqlx-session/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | .envrc 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbr/async-sqlx-session/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbr/async-sqlx-session/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbr/async-sqlx-session/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/mysql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbr/async-sqlx-session/HEAD/src/mysql.rs -------------------------------------------------------------------------------- /src/pg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbr/async-sqlx-session/HEAD/src/pg.rs -------------------------------------------------------------------------------- /src/sqlite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbr/async-sqlx-session/HEAD/src/sqlite.rs --------------------------------------------------------------------------------