2 Commits

Author SHA1 Message Date
625402c0b6 Merge pull request 'Remove clap and openssl' (#257) from 256-remove-unused-dependencies into main
Some checks failed
Push Workflows / rustfmt (push) Successful in 44s
Push Workflows / docker-build (push) Successful in 57s
Push Workflows / mdbook (push) Successful in 44s
Push Workflows / clippy (push) Successful in 1m35s
Push Workflows / docs (push) Successful in 1m40s
Push Workflows / mdbook-server (push) Successful in 1m45s
Push Workflows / leptos-test (push) Successful in 2m0s
Push Workflows / nix-build (push) Has been cancelled
Push Workflows / test (push) Has been cancelled
Push Workflows / build (push) Has been cancelled
Reviewed-on: https://gitea.mregirouard.com/LibreTunes/LibreTunes/pulls/257
2025-10-18 22:52:50 +00:00
cbf07e6865 Remove clap and openssl
All checks were successful
Push Workflows / nix-build (push) Successful in 8m21s
Push Workflows / docker-build (push) Successful in 11m28s
Push Workflows / rustfmt (push) Successful in 26s
Push Workflows / mdbook (push) Successful in 35s
Push Workflows / clippy (push) Successful in 1m34s
Push Workflows / docs (push) Successful in 1m41s
Push Workflows / mdbook-server (push) Successful in 32s
Push Workflows / test (push) Successful in 3m15s
Push Workflows / leptos-test (push) Successful in 3m12s
Push Workflows / build (push) Successful in 4m49s
2025-10-18 18:45:43 -04:00
2 changed files with 3 additions and 58 deletions

54
Cargo.lock generated
View File

@@ -1005,21 +1005,6 @@ version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
[[package]]
name = "form_urlencoded"
version = "1.2.2"
@@ -2214,7 +2199,6 @@ dependencies = [
"log",
"multer",
"once_cell",
"openssl",
"pbkdf2",
"rand 0.9.1",
"reqwest",
@@ -2465,44 +2449,6 @@ version = "1.21.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
[[package]]
name = "openssl"
version = "0.10.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
dependencies = [
"bitflags 2.5.0",
"cfg-if",
"foreign-types",
"libc",
"once_cell",
"openssl-macros",
"openssl-sys",
]
[[package]]
name = "openssl-macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "openssl-sys"
version = "0.9.102"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2"
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "or_poisoned"
version = "0.1.0"

View File

@@ -37,7 +37,6 @@ leptos_icons = { version = "0.6.1" }
icondata = { version = "0.5.0" }
diesel = { version = "2.1.4", features = ["postgres", "r2d2", "chrono"], default-features = false, optional = true }
serde = { version = "1.0.195", features = ["derive"], default-features = false }
openssl = { version = "0.10.63", optional = true }
diesel_migrations = { version = "2.1.0", optional = true }
pbkdf2 = { version = "0.12.2", features = ["simple"], optional = true }
tokio = { version = "1", optional = true, features = ["rt-multi-thread"] }
@@ -64,7 +63,7 @@ futures = { version = "0.3.25", default-features = false, optional = true }
once_cell = { version = "1.20", default-features = false, optional = true }
libretunes_macro = { git = "https://git.libretunes.xyz/LibreTunes/LibreTunes-Macro.git", branch = "main" }
rand = { version = "0.9.1", optional = true }
clap = { version = "4.5.39", features = ["derive", "env"] }
clap = { version = "4.5.39", features = ["derive", "env"], optional = true }
tokio-tungstenite = { version = "0.26.2", optional = true }
url = { version = "2.5.7", optional = true }
@@ -82,7 +81,6 @@ ssr = [
"leptos_router/ssr",
"dotenvy",
"diesel",
"openssl",
"diesel_migrations",
"pbkdf2",
"tokio",
@@ -99,7 +97,8 @@ ssr = [
"leptos-use/ssr",
"image-convert",
"rand",
"dep:url"
"dep:url",
"dep:clap",
]
reqwest_api = [
"reqwest",