Commit f7c7f01 1 parent 25e5957 commit f7c7f01 Copy full SHA for f7c7f01
File tree 3 files changed +11
-2
lines changed
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 18
18
toolchain : stable
19
19
override : true
20
20
21
+ - run : sudo apt-get install libclang-dev
22
+
21
23
- name : Rust Cache
22
24
uses : Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5
23
25
42
44
toolchain : 1.79.0
43
45
override : true
44
46
47
+ - name : Install Clang (Ubuntu)
48
+ if : ${{ runner.os == 'Linux' }}
49
+ run : sudo apt-get install libclang-dev
50
+ - name : Workaround macOS Clang
51
+ if : ${{ runner.os == 'macOS' }}
52
+ run : brew link llvm@15
53
+
45
54
- name : Rust Cache
46
55
uses : Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5
47
56
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ smallvec = "1.0.0"
45
45
parking_lot = " 0.12.0"
46
46
num_cpus = " 1.10.1"
47
47
regex = " 1.3.1"
48
- rocksdb = { version = " 0.22 .0" , default-features = false }
48
+ rocksdb = { version = " 0.23 .0" , default-features = false }
49
49
alloc_counter = " 0.0.4"
50
50
sysinfo = " 0.30.13"
51
51
ctrlc = " 3.1.4"
Original file line number Diff line number Diff line change 2
2
name = " kvdb-rocksdb"
3
3
version = " 0.19.0"
4
4
description = " kvdb implementation backed by RocksDB"
5
- rust-version = " 1.56 .1"
5
+ rust-version = " 1.71 .1"
6
6
authors.workspace = true
7
7
edition.workspace = true
8
8
license.workspace = true
You can’t perform that action at this time.
0 commit comments