Compare commits
2 Commits
cb6fbc26b5
...
625402c0b6
| Author | SHA1 | Date | |
|---|---|---|---|
| 625402c0b6 | |||
|
cbf07e6865
|
54
Cargo.lock
generated
54
Cargo.lock
generated
@@ -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"
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user