Previously we tried to support more or less whichever SQLx version the user depends on, but SQLx 0.9 changed the signature of the IntoArguments trait which means that we cannot generate code which works with both <0.9 and >=0.9 at the same time. Should we start depending on SQLx 0.9 explicitly and have a hidden public re-export of it that the macros can refer to? That would hopefully lessen the confusion here if you tried to update this crate while keeping the old SQLx version, or the other way around.
Previously we tried to support more or less whichever SQLx version the user depends on, but SQLx 0.9 changed the signature of the
IntoArgumentstrait which means that we cannot generate code which works with both <0.9 and >=0.9 at the same time. Should we start depending on SQLx 0.9 explicitly and have a hidden public re-export of it that the macros can refer to? That would hopefully lessen the confusion here if you tried to update this crate while keeping the old SQLx version, or the other way around.