mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 04:02:00 -06:00
Update dependency versions
This commit is contained in:
parent
a3c717dc1a
commit
0bb20d24a2
4 changed files with 68 additions and 65 deletions
59
Cargo.lock
generated
59
Cargo.lock
generated
|
|
@ -104,6 +104,15 @@ version = "0.1.2"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a2698f953def977c68f935bb0dfa959375ad4638570e969e2f1e9f433cbf1af6"
|
||||
|
||||
[[package]]
|
||||
name = "castaway"
|
||||
version = "0.2.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8a17ed5635fc8536268e5d4de1e22e81ac34419e5f052d4d51f4e01dcc263fcc"
|
||||
dependencies = [
|
||||
"rustversion",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cbc"
|
||||
version = "0.1.2"
|
||||
|
|
@ -284,10 +293,11 @@ dependencies = [
|
|||
"crunchyroll-rs",
|
||||
"ctrlc",
|
||||
"dirs",
|
||||
"isahc",
|
||||
"isahc 1.7.0 (git+https://github.com/sagebind/isahc?rev=c39f6f8)",
|
||||
"log",
|
||||
"num_cpus",
|
||||
"regex",
|
||||
"rustls-native-certs",
|
||||
"signal-hook",
|
||||
"sys-locale",
|
||||
"tempfile",
|
||||
|
|
@ -306,7 +316,7 @@ dependencies = [
|
|||
"crunchyroll-rs-internal",
|
||||
"curl-sys",
|
||||
"http",
|
||||
"isahc",
|
||||
"isahc 1.7.0 (git+https://github.com/sagebind/isahc?rev=34f158ef)",
|
||||
"m3u8-rs",
|
||||
"regex",
|
||||
"rustls-native-certs",
|
||||
|
|
@ -719,7 +729,7 @@ version = "1.7.0"
|
|||
source = "git+https://github.com/sagebind/isahc?rev=34f158ef#34f158ef9f87b2387bed2c81936916a29c1eaad1"
|
||||
dependencies = [
|
||||
"async-channel",
|
||||
"castaway",
|
||||
"castaway 0.1.2",
|
||||
"crossbeam-utils",
|
||||
"curl",
|
||||
"curl-sys",
|
||||
|
|
@ -741,6 +751,33 @@ dependencies = [
|
|||
"waker-fn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "isahc"
|
||||
version = "1.7.0"
|
||||
source = "git+https://github.com/sagebind/isahc?rev=c39f6f8#c39f6f85aaa1f36c5857064c6c3c80f4d307d863"
|
||||
dependencies = [
|
||||
"async-channel",
|
||||
"castaway 0.2.2",
|
||||
"crossbeam-utils",
|
||||
"curl",
|
||||
"curl-sys",
|
||||
"data-encoding",
|
||||
"encoding_rs",
|
||||
"event-listener",
|
||||
"futures-io",
|
||||
"futures-lite",
|
||||
"http",
|
||||
"log",
|
||||
"mime",
|
||||
"once_cell",
|
||||
"polling",
|
||||
"sluice",
|
||||
"tracing",
|
||||
"tracing-futures",
|
||||
"url",
|
||||
"waker-fn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "itoa"
|
||||
version = "1.0.4"
|
||||
|
|
@ -905,15 +942,6 @@ version = "0.1.5"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
||||
|
||||
[[package]]
|
||||
name = "openssl-src"
|
||||
version = "111.24.0+1.1.1s"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3498f259dab01178c6228c6b00dcef0ed2a2d5e20d648c017861227773ea4abd"
|
||||
dependencies = [
|
||||
"cc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "openssl-sys"
|
||||
version = "0.9.78"
|
||||
|
|
@ -923,7 +951,6 @@ dependencies = [
|
|||
"autocfg",
|
||||
"cc",
|
||||
"libc",
|
||||
"openssl-src",
|
||||
"pkg-config",
|
||||
"vcpkg",
|
||||
]
|
||||
|
|
@ -1121,6 +1148,12 @@ dependencies = [
|
|||
"base64",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rustversion"
|
||||
version = "1.0.9"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8"
|
||||
|
||||
[[package]]
|
||||
name = "ryu"
|
||||
version = "1.0.11"
|
||||
|
|
|
|||
|
|
@ -9,9 +9,6 @@ default = ["static-curl"]
|
|||
|
||||
# Embed a static curl library into the binary instead of just linking it.
|
||||
static-curl = ["crunchy-cli-core/static-curl"]
|
||||
# Embed a static openssl library into the binary instead of just linking it. If you want to compile this project against
|
||||
# musl and have openssl issues, this might solve these issues.
|
||||
static-ssl = ["crunchy-cli-core/static-ssl"]
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1.22", features = ["macros", "rt-multi-thread", "time"], default-features = false }
|
||||
|
|
@ -26,7 +23,7 @@ clap_mangen = "0.2"
|
|||
|
||||
# The static-* features must be used here since build dependency features cannot be manipulated from the features
|
||||
# specified in this Cargo.toml [features].
|
||||
crunchy-cli-core = { path = "./crunchy-cli-core", features = ["static-curl", "static-ssl"] }
|
||||
crunchy-cli-core = { path = "./crunchy-cli-core", features = ["static-curl"] }
|
||||
|
||||
[target.'cfg(all(windows, target_env = "msvc"))'.build-dependencies]
|
||||
static_vcruntime = "2.0"
|
||||
|
|
|
|||
59
crunchy-cli-core/Cargo.lock
generated
59
crunchy-cli-core/Cargo.lock
generated
|
|
@ -100,9 +100,12 @@ checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c"
|
|||
|
||||
[[package]]
|
||||
name = "castaway"
|
||||
version = "0.1.2"
|
||||
version = "0.2.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a2698f953def977c68f935bb0dfa959375ad4638570e969e2f1e9f433cbf1af6"
|
||||
checksum = "8a17ed5635fc8536268e5d4de1e22e81ac34419e5f052d4d51f4e01dcc263fcc"
|
||||
dependencies = [
|
||||
"rustversion",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cbc"
|
||||
|
|
@ -256,6 +259,7 @@ dependencies = [
|
|||
"log",
|
||||
"num_cpus",
|
||||
"regex",
|
||||
"rustls-native-certs",
|
||||
"signal-hook",
|
||||
"sys-locale",
|
||||
"tempfile",
|
||||
|
|
@ -266,7 +270,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "crunchyroll-rs"
|
||||
version = "0.1.0"
|
||||
source = "git+https://github.com/crunchy-labs/crunchyroll-rs#3e9f7bfaab68649ecdb486aee0b15fe658d51917"
|
||||
source = "git+https://github.com/crunchy-labs/crunchyroll-rs#ffb054cbae4079bf2357a23e90a353ce875978af"
|
||||
dependencies = [
|
||||
"aes",
|
||||
"cbc",
|
||||
|
|
@ -282,14 +286,13 @@ dependencies = [
|
|||
"serde_json",
|
||||
"serde_urlencoded",
|
||||
"smart-default",
|
||||
"static_vcruntime",
|
||||
"tokio",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crunchyroll-rs-internal"
|
||||
version = "0.1.0"
|
||||
source = "git+https://github.com/crunchy-labs/crunchyroll-rs#3e9f7bfaab68649ecdb486aee0b15fe658d51917"
|
||||
source = "git+https://github.com/crunchy-labs/crunchyroll-rs#ffb054cbae4079bf2357a23e90a353ce875978af"
|
||||
dependencies = [
|
||||
"darling",
|
||||
"quote",
|
||||
|
|
@ -530,13 +533,8 @@ version = "1.12.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
|
||||
dependencies = [
|
||||
"fastrand",
|
||||
"futures-core",
|
||||
"futures-io",
|
||||
"memchr",
|
||||
"parking",
|
||||
"pin-project-lite",
|
||||
"waker-fn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -685,7 +683,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "isahc"
|
||||
version = "1.7.0"
|
||||
source = "git+https://github.com/sagebind/isahc?rev=34f158ef#34f158ef9f87b2387bed2c81936916a29c1eaad1"
|
||||
source = "git+https://github.com/sagebind/isahc?rev=c39f6f8#c39f6f85aaa1f36c5857064c6c3c80f4d307d863"
|
||||
dependencies = [
|
||||
"async-channel",
|
||||
"castaway",
|
||||
|
|
@ -695,6 +693,7 @@ dependencies = [
|
|||
"data-encoding",
|
||||
"encoding_rs",
|
||||
"event-listener",
|
||||
"futures-io",
|
||||
"futures-lite",
|
||||
"http",
|
||||
"httpdate",
|
||||
|
|
@ -702,7 +701,6 @@ dependencies = [
|
|||
"mime",
|
||||
"once_cell",
|
||||
"polling",
|
||||
"slab",
|
||||
"sluice",
|
||||
"tracing",
|
||||
"tracing-futures",
|
||||
|
|
@ -874,15 +872,6 @@ version = "0.1.5"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
||||
|
||||
[[package]]
|
||||
name = "openssl-src"
|
||||
version = "111.24.0+1.1.1s"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3498f259dab01178c6228c6b00dcef0ed2a2d5e20d648c017861227773ea4abd"
|
||||
dependencies = [
|
||||
"cc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "openssl-sys"
|
||||
version = "0.9.78"
|
||||
|
|
@ -892,7 +881,6 @@ dependencies = [
|
|||
"autocfg",
|
||||
"cc",
|
||||
"libc",
|
||||
"openssl-src",
|
||||
"pkg-config",
|
||||
"vcpkg",
|
||||
]
|
||||
|
|
@ -903,12 +891,6 @@ version = "6.4.1"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
|
||||
|
||||
[[package]]
|
||||
name = "parking"
|
||||
version = "2.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
|
||||
|
||||
[[package]]
|
||||
name = "percent-encoding"
|
||||
version = "2.2.0"
|
||||
|
|
@ -1084,6 +1066,12 @@ dependencies = [
|
|||
"base64",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rustversion"
|
||||
version = "1.0.9"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8"
|
||||
|
||||
[[package]]
|
||||
name = "ryu"
|
||||
version = "1.0.11"
|
||||
|
|
@ -1191,15 +1179,6 @@ dependencies = [
|
|||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "slab"
|
||||
version = "0.4.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
|
||||
dependencies = [
|
||||
"autocfg",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "sluice"
|
||||
version = "0.5.5"
|
||||
|
|
@ -1232,12 +1211,6 @@ dependencies = [
|
|||
"winapi",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "static_vcruntime"
|
||||
version = "2.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "954e3e877803def9dc46075bf4060147c55cd70db97873077232eae0269dc89b"
|
||||
|
||||
[[package]]
|
||||
name = "strsim"
|
||||
version = "0.10.0"
|
||||
|
|
|
|||
|
|
@ -7,10 +7,6 @@ edition = "2021"
|
|||
[features]
|
||||
# Embed a static curl library into the binary instead of just linking it.
|
||||
static-curl = ["crunchyroll-rs/static-curl"]
|
||||
# Embed a static openssl library into the binary instead of just linking it. If you want to compile this project against
|
||||
# musl and have openssl issues, this might solve these issues.
|
||||
# Has no effect on Windows, the library is always statically linked there.
|
||||
static-ssl = ["crunchyroll-rs/static-ssl"]
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
|
|
@ -20,7 +16,7 @@ chrono = "0.4"
|
|||
crunchyroll-rs = { git = "https://github.com/crunchy-labs/crunchyroll-rs", default-features = false, features = ["stream", "parse"] }
|
||||
ctrlc = "3.2"
|
||||
dirs = "4.0"
|
||||
isahc = { git = "https://github.com/sagebind/isahc", rev = "34f158ef" }
|
||||
isahc = { git = "https://github.com/sagebind/isahc", rev = "c39f6f8" }
|
||||
log = { version = "0.4", features = ["std"] }
|
||||
num_cpus = "1.13"
|
||||
regex = "1.6"
|
||||
|
|
@ -30,5 +26,9 @@ terminal_size = "0.2"
|
|||
tokio = { version = "1.21", features = ["macros", "rt-multi-thread", "time"] }
|
||||
sys-locale = "0.2"
|
||||
|
||||
[target.'cfg(all(windows, target_env = "msvc"))'.dependencies]
|
||||
isahc = { git = "https://github.com/sagebind/isahc", rev = "c39f6f8", features = ["data-encoding"] }
|
||||
rustls-native-certs = "0.6"
|
||||
|
||||
[build-dependencies]
|
||||
chrono = "0.4"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue