File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -38,13 +38,17 @@ jobs:
38
38
git clone https://github.com/rust-bitcoin/rust-lightning
39
39
cd rust-lightning
40
40
git checkout 0.0.117-bindings
41
+ # Pin memchr until we can remove it
42
+ cargo update -p memchr --precise "2.5.0" --verbose
41
43
- name : Fix Github Actions to not be broken
42
44
run : git config --global --add safe.directory /__w/ldk-c-bindings/ldk-c-bindings
43
- - name : Pin proc-macro and quote to meet MSRV
45
+ - name : Pin proc-macro, quote and memchr to meet MSRV
44
46
run : |
45
47
cd c-bindings-gen
46
48
cargo update -p quote --precise "1.0.30" --verbose
47
49
cargo update -p proc-macro2 --precise "1.0.65" --verbose
50
+ cd ../lightning-c-bindings
51
+ cargo update -p memchr --precise "2.5.0" --verbose
48
52
- name : Rebuild bindings without std, and check the sample app builds + links
49
53
run : ./genbindings.sh ./rust-lightning false
50
54
- name : Rebuild bindings, and check the sample app builds + links
You can’t perform that action at this time.
0 commit comments