8000 Upgrade rocksdb to 0.23.0 by jasl · Pull Request #903 · paritytech/parity-common · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Upgrade rocksdb to 0.23.0 #903

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
toolchain: stable
override: true

- run: sudo apt-get install libclang-dev

- name: Rust Cache
uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5

Expand All @@ -42,6 +44,13 @@ jobs:
toolchain: 1.79.0
override: true

- name: Install Clang (Ubuntu)
if: ${{ runner.os == 'Linux' }}
run: sudo apt-get install libclang-dev
- name: Workaround macOS Clang
if: ${{ runner.os == 'macOS' }}
run: brew link llvm@15

- name: Rust Cache
uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ smallvec = "1.0.0"
parking_lot = "0.12.0"
num_cpus = "1.10.1"
regex = "1.3.1"
rocksdb = { version = "0.22.0", default-features = false }
rocksdb = { version = "0.23.0", default-features = false }
alloc_counter = "0.0.4"
sysinfo = "0.30.13"
ctrlc = "3.1.4"
Expand Down
2 changes: 1 addition & 1 deletion kvdb-rocksdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "kvdb-rocksdb"
version = "0.19.0"
description = "kvdb implementation backed by RocksDB"
rust-version = "1.56.1"
rust-version = "1.71.1"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
Loading
0