Skip to content

v0.5.0

Compare
Choose a tag to compare
@everpcpc everpcpc released this 28 Jul 02:50
· 309 commits to main since this release
1e854c1

What's Changed


Breaking change

Connection in rust driver is now wrapped by Client, and getting connection is changed to async. The new usage is:

let client = Client::new(dsn);
let conn = client.get_conn().await.unwrap();

Full Changelog: v0.4.7...v0.5.0