Readyset is a MySQL and Postgres wire-compatible caching layer that sits in front of existing databases to speed up queries and horizontally scale read throughput. Under the hood, ReadySet caches the results of cached select statements and incrementally updates these results over time as the underlying data changes.
This commit upgrades many of our dependencies to newer versions. Note
that this was not just the result of a cargo update invocation; I used
the cargo-edit tool to automate the process of upgrading crate
versions in our Cargo.toml (I also ran cargo update afterwards for
good measure). The code changes in this commit reflect breaking API
changes in the new package versions.
This commit upgrades many of our dependencies to newer versions. Note that this was not just the result of a
cargo update
invocation; I used thecargo-edit
tool to automate the process of upgrading crate versions in our Cargo.toml (I also rancargo update
afterwards for good measure). The code changes in this commit reflect breaking API changes in the new package versions.