@@ -5,7 +5,7 @@ rust-rocksdb
5
5
[ ![ documentation] ( https://docs.rs/rocksdb/badge.svg )] ( https://docs.rs/rocksdb )
6
6
[ ![ license] ( https://img.shields.io/crates/l/rocksdb.svg )] ( https://github.com/rust-rocksdb/rust-rocksdb/blob/master/LICENSE )
7
7
[ ![ Gitter chat] ( https://badges.gitter.im/rust-rocksdb/gitter.png )] ( https://gitter.im/rust-rocksdb/lobby )
8
- ![ rust 1.60 .0 required] ( https://img.shields.io/badge/rust-1.60 .0-blue.svg?label=MSRV )
8
+ ![ rust 1.63 .0 required] ( https://img.shields.io/badge/rust-1.63 .0-blue.svg?label=MSRV )
9
9
10
10
11
11
![ GitHub commits (since latest release)] ( https://img.shields.io/github/commits-since/rust-rocksdb/rust-rocksdb/latest.svg )
@@ -16,25 +16,25 @@ rust-rocksdb
16
16
17
17
## Contributing
18
18
19
- Feedback and pull requests welcome! If a particular feature of RocksDB is
20
- important to you, please let me know by opening an issue, and I'll
19
+ Feedback and pull requests welcome! If a particular feature of RocksDB is
20
+ important to you, please let me know by opening an issue, and I'll
21
21
prioritize it.
22
22
23
23
## Usage
24
24
25
- This binding is statically linked with a specific version of RocksDB. If you
26
- want to build it yourself, make sure you've also cloned the RocksDB and
25
+ This binding is statically linked with a specific version of RocksDB. If you
26
+ want to build it yourself, make sure you've also cloned the RocksDB and
27
27
compression submodules:
28
28
29
29
git submodule update --init --recursive
30
30
31
31
## Compression Support
32
- By default, support for the [ Snappy] ( https://github.com/google/snappy ) ,
33
- [ LZ4] ( https://github.com/lz4/lz4 ) , [ Zstd] ( https://github.com/facebook/zstd ) ,
34
- [ Zlib] ( https://zlib.net ) , and [ Bzip2] ( http://www.bzip.org ) compression
35
- is enabled through crate features. If support for all of these compression
36
- algorithms is not needed, default features can be disabled and specific
37
- compression algorithms can be enabled. For example, to enable only LZ4
32
+ By default, support for the [ Snappy] ( https://github.com/google/snappy ) ,
33
+ [ LZ4] ( https://github.com/lz4/lz4 ) , [ Zstd] ( https://github.com/facebook/zstd ) ,
34
+ [ Zlib] ( https://zlib.net ) , and [ Bzip2] ( http://www.bzip.org ) compression
35
+ is enabled through crate features. If support for all of these compression
36
+ algorithms is not needed, default features can be disabled and specific
37
+ compression algorithms can be enabled. For example, to enable only LZ4
38
38
compression support, make these changes to your Cargo.toml:
39
39
40
40
```
0 commit comments