sqlx icon indicating copy to clipboard operation
sqlx copied to clipboard

Update libsqlite3-sys to `0.34.0`

Open partylikeits1983 opened this issue 8 months ago • 0 comments

Does your PR solve an issue?

Yes. This PR resolves a version conflict between sqlx and other dependencies (like rusqlite) caused by incompatible versions of the libsqlite3-sys crate, which links the native SQLite library. Cargo requires only one version of such native-linking crates in the dependency graph.

By updating sqlx to use a compatible libsqlite3-sys version, this conflict is eliminated, allowing both libraries to coexist in the project.

Is this a breaking change?

No. This change only updates internal dependencies to align native library versions without changing any public APIs or behavior.

partylikeits1983 avatar Jun 06 '25 13:06 partylikeits1983