Giving more dependencies for CI with openssl-sys on aarch64-unknown-linux-gnu

This commit is contained in:
Xithrius 2022-04-02 15:45:39 -07:00
parent bff6f734a3
commit 0224921230
No known key found for this signature in database
GPG Key ID: BD0FC909FA912B62
3 changed files with 64 additions and 6 deletions

View File

@ -67,7 +67,7 @@ jobs:
- name: Install target toolchain
if: matrix.target == 'aarch64-unknown-linux-gnu'
run: sudo apt-get install gcc-aarch64-linux-gnu libssl-dev
run: sudo apt-get install gcc-aarch64-linux-gnu build-essential libssl-dev linux-libc-dev pkgconf
- name: Build
run: cargo build --verbose --target ${{ matrix.target }}

54
Cargo.lock generated
View File

@ -186,6 +186,36 @@ dependencies = [
"winapi",
]
[[package]]
name = "curl"
version = "0.4.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37d855aeef205b43f65a5001e0997d81f8efca7badad4fad7d897aa7f0d0651f"
dependencies = [
"curl-sys",
"libc",
"openssl-probe",
"openssl-sys",
"schannel",
"socket2",
"winapi",
]
[[package]]
name = "curl-sys"
version = "0.4.53+curl-7.82.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8092905a5a9502c312f223b2775f57ec5c5b715f9a15ee9d2a8591d1364a0352"
dependencies = [
"cc",
"libc",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
"winapi",
]
[[package]]
name = "dirs-next"
version = "2.0.0"
@ -601,6 +631,18 @@ dependencies = [
"vcpkg",
]
[[package]]
name = "libz-sys"
version = "1.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f35facd4a5673cb5a48822be2be1d4236c1c99cb4113cab7061ac720d5bf859"
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "linux-raw-sys"
version = "0.0.42"
@ -779,6 +821,15 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-src"
version = "111.18.0+1.1.1n"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7897a926e1e8d00219127dc020130eca4292e5ca666dd592480d72c3eca2ff6c"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
version = "0.9.72"
@ -788,6 +839,7 @@ dependencies = [
"autocfg",
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]
@ -1346,11 +1398,13 @@ dependencies = [
"chrono",
"clap",
"crossterm 0.23.1",
"curl",
"enum-iterator",
"futures",
"fuzzy-matcher",
"irc",
"lazy_static",
"openssl",
"regex",
"rusqlite",
"rustyline",

View File

@ -14,10 +14,10 @@ categories = ["command-line-utilities"]
[dependencies]
crossterm = "0.23.1"
tui = { version = "0.17.0", default-features = false, features = ["crossterm"] }
tokio = { version = "1.17.0", features = ["full"] }
serde = { version = "1.0.136", features = ["derive"] }
clap = { version = "3.1.1", features = ["derive"] }
tui = { version = "0.17.0", default-features = false, features = [ "crossterm" ] }
tokio = { version = "1.17.0", features = [ "full" ] }
serde = { version = "1.0.136", features = [ "derive" ] }
clap = { version = "3.1.1", features = [ "derive" ] }
anyhow = "1.0.56"
unicode-width = "0.1.9"
unicode-segmentation = "1.9.0"
@ -34,7 +34,11 @@ rusqlite = "0.27.0"
regex = "1.5.5"
[target.'cfg(windows)'.dependencies]
rusqlite = { version = "0.27.0", features = ["winsqlite3"] }
rusqlite = { version = "0.27.0", features = [ "winsqlite3"] }
[target.'cfg(unix)'.dependencies]
openssl = { version = "0.10.38", features = [ "vendored" ] }
curl = { version = "0.4.43", features = [ "static-curl", "static-ssl" ] }
[[bin]]
bench = false