cassandra-rs v0.15.0 Release Notes

Release Date: 2020-01-28 // about 4 years ago
  • 🔄 Changed

    • ⬇️ Drop support for futures 0.1, and implement std::future instead, allowing you to use this this library inside async functions, allowing anything that returns a CassFuture to be awaited. This is a breaking change, and will require you to update your call-sites to either use std::future, or wrap them with a compatibility shim (e.g., futures::compat).

    ➕ Added

    • ➕ Adds a new method, Cluster.connect_async that returns a future, allowing you to connect to the cluster without blocking the event loop.