Skip to content

Commit

Permalink
Upgrade rocksdb to 0.22.0, bump MSRV to 1.66 (#3383)
Browse files Browse the repository at this point in the history
Allow easier packaging for Debian
  • Loading branch information
mr-c authored Nov 13, 2024
1 parent de1a597 commit c6cadb4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 30 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -273,11 +273,11 @@ jobs:

- uses: actions-rs/toolchain@v1
with:
toolchain: "1.65.0"
toolchain: "1.66.0"
override: true

- name: check if README matches MSRV defined here
run: grep '1.65.0' src/core/README.md
run: grep '1.66.0' src/core/README.md

- name: Check if it builds properly
uses: actions-rs/cargo@v1
Expand Down
33 changes: 8 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2021"
readme = "README.md"
autoexamples = false
autobins = false
rust-version = "1.65.0"
rust-version = "1.66.0"

[lib]
name = "sourmash"
Expand Down Expand Up @@ -109,6 +109,6 @@ wasm-bindgen-test = "0.3.42"

### These crates don't compile on wasm
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
rocksdb = { version = "0.21.0", optional = true }
rocksdb = { version = "0.22.0", optional = true }
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
criterion = "0.5.1"
2 changes: 1 addition & 1 deletion src/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ Development happens on github at

## Minimum supported Rust version

Currently the minimum supported Rust version is 1.65.0.
Currently the minimum supported Rust version is 1.66.0.

0 comments on commit c6cadb4

Please sign in to comment.