File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 31
31
run : sudo apt install --assume-yes ${{ matrix.packages }}
32
32
- name : Configure cargo linker to use
33
33
if : matrix.linker != ''
34
- run : mkdir .cargo && echo -ne '[target.aarch64-unknown-linux-gnu ]\nlinker = "${{ matrix.linker }}"' > .cargo/config
34
+ run : mkdir .cargo && echo -ne '[target.${{ matrix.target }} ]\nlinker = "${{ matrix.linker }}"' > .cargo/config
35
35
- name : Adds rust target
36
36
run : rustup target add ${{ matrix.target }}
37
37
- name : Build
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v1.1.0
4
+
5
+ Adds OpenSSL static library dependency
6
+
3
7
## v1.0.1
4
8
5
9
Adds ARM targets on releases
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ hamlib-client = "1.0.0"
15
15
lazy_static = " 1.5.0"
16
16
log = " 0.4.22"
17
17
log4rs = " 1.3.0"
18
+ openssl = { version = " 0.10.66" , features = [" vendored" ] }
18
19
regex = " 1.10.6"
19
20
reqwest = { version = " 0.12.7" , features = [" json" ] }
20
21
serde = { version = " 1.0.209" , features = [" derive" ] }
You can’t perform that action at this time.
0 commit comments