You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, I need to read some RocksDB files with format_version=6. I found that the currently used dependency (https://crates.io/crates/[email protected]) only supports up to version 5, while the latest version 0.23 supports files with version 6.
I attempted to update the dependency, build, and test it, and all tests passed. I was also able to read the version 6 data directly.
Additionally, I noticed that new versions of the current dependency are released very slowly, and there seem to be some issues with the process (rust-rocksdb/rust-rocksdb#855). As a result, I also tried switching to https://crates.io/crates/[email protected], which has a fixed release strategy:
rust-rocksdb keeps a rolling MSRV (minimum supported Rust version) policy of 6 months. This means we will accept PRs that upgrade the MSRV as long as the new Rust version used is at least 6 months old.
After switching the dependency and updating all use statements, the build and tests were successful.
Therefore, I suggest updating the current dependency version or directly switching to this repository with the fixed release strategy. I’ve tested it, and so far, all the used APIs are compatible.
Thank you for this library, which is as refreshing as a cool evening breeze in summer.
The text was updated successfully, but these errors were encountered:
Hello,
Currently, I need to read some RocksDB files with
format_version=6
. I found that the currently used dependency (https://crates.io/crates/[email protected]
) only supports up to version 5, while the latest version 0.23 supports files with version 6.I attempted to update the dependency, build, and test it, and all tests passed. I was also able to read the version 6 data directly.
Additionally, I noticed that new versions of the current dependency are released very slowly, and there seem to be some issues with the process (rust-rocksdb/rust-rocksdb#855). As a result, I also tried switching to
https://crates.io/crates/[email protected]
, which has a fixed release strategy:After switching the dependency and updating all
use
statements, the build and tests were successful.Therefore, I suggest updating the current dependency version or directly switching to this repository with the fixed release strategy. I’ve tested it, and so far, all the used APIs are compatible.
Thank you for this library, which is as refreshing as a cool evening breeze in summer.
The text was updated successfully, but these errors were encountered: