chore: remove explicit openssl

This commit is contained in:
talwat 2024-10-02 01:05:28 +02:00
parent 4e8ca23fae
commit 4112c152fe
2 changed files with 2 additions and 14 deletions

13
Cargo.lock generated
View File

@ -982,7 +982,7 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
[[package]] [[package]]
name = "lowfi" name = "lowfi"
version = "1.2.2" version = "1.2.3"
dependencies = [ dependencies = [
"Inflector", "Inflector",
"arc-swap", "arc-swap",
@ -992,7 +992,6 @@ dependencies = [
"eyre", "eyre",
"futures", "futures",
"lazy_static", "lazy_static",
"openssl",
"rand", "rand",
"reqwest", "reqwest",
"rodio", "rodio",
@ -1242,15 +1241,6 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-src"
version = "300.3.2+3.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a211a18d945ef7e648cc6e0058f4c548ee46aab922ea203e0d30e966ea23647b"
dependencies = [
"cc",
]
[[package]] [[package]]
name = "openssl-sys" name = "openssl-sys"
version = "0.9.103" version = "0.9.103"
@ -1259,7 +1249,6 @@ checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6"
dependencies = [ dependencies = [
"cc", "cc",
"libc", "libc",
"openssl-src",
"pkg-config", "pkg-config",
"vcpkg", "vcpkg",
] ]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "lowfi" name = "lowfi"
version = "1.2.2" version = "1.2.3"
edition = "2021" edition = "2021"
description = "An extremely simple lofi player." description = "An extremely simple lofi player."
license = "MIT" license = "MIT"
@ -40,4 +40,3 @@ rodio = { version = "0.19.0", features = ["symphonia-mp3"], default-features = f
crossterm = "0.28.1" crossterm = "0.28.1"
Inflector = "0.11.4" Inflector = "0.11.4"
lazy_static = "1.5.0" lazy_static = "1.5.0"
openssl = { version = "*", features = ["vendored"] }