The sqlx had some API changes from version 0.7.4 (which we currently use as a dependency in chorus) to the latest version 0.8.0.
[x] The latest version of sqlx should be supported.
Also, we currently only implement sqlx::MySql versions of sqlx::Encode and sqlx::Decode. This should be changed to sqlx::Any, to give chorus users a choice in which database backend they would like to use, instead of locking them (and us) to MySql/MariaDB.
[x] Replace sqlx::MySql versions of sqlx::Encode and sqlx::Decode with sqlx::Any versions
The
sqlx
had some API changes from version 0.7.4 (which we currently use as a dependency in chorus) to the latest version 0.8.0.sqlx
should be supported.Also, we currently only implement
sqlx::MySql
versions ofsqlx::Encode
andsqlx::Decode
. This should be changed tosqlx::Any
, to give chorus users a choice in which database backend they would like to use, instead of locking them (and us) to MySql/MariaDB.sqlx::MySql
versions ofsqlx::Encode
andsqlx::Decode
withsqlx::Any
versions