File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1616 uses : actions/checkout@v4
1717 with :
1818 persist-credentials : false
19- - name : Install lcov tools
20- run : sudo apt-get install lcov -y
19+ - name : Install system dependencies
20+ run : |
21+ sudo apt-get update
22+ sudo apt-get install -y libudev-dev libusb-1.0-0-dev lcov
2123 - name : Install Rust toolchain
2224 uses : actions-rs/toolchain@v1
2325 with :
Original file line number Diff line number Diff line change 1818 steps :
1919 - name : Checkout
2020 uses : actions/checkout@v4
21+ # hwi (async-hwi) depends on libudev-sys
22+ - name : Install system dependencies
23+ run : |
24+ sudo apt-get update
25+ sudo apt-get install -y libudev-dev libusb-1.0-0-dev
2126 - name : Generate cache key
2227 run : echo "${{ matrix.rust }} ${{ matrix.features }}" | tee .cache_key
2328 - name : Cache
Original file line number Diff line number Diff line change @@ -1150,10 +1150,7 @@ pub async fn handle_hwi_subcommand(
11501150 #[ cfg( feature = "rpc" ) ]
11511151 cookie : None ,
11521152 #[ cfg( feature = "cbf" ) ]
1153- compactfilter_opts : CompactFilterOpts {
1154- conn_count : 2 ,
1155- skip_blocks : None ,
1156- } ,
1153+ compactfilter_opts : CompactFilterOpts { conn_count : 2 } ,
11571154 } ;
11581155
11591156 #[ cfg( feature = "sqlite" ) ]
You can’t perform that action at this time.
0 commit comments