mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 04:02:00 -06:00
Rewrite it in Rust
This commit is contained in:
parent
d4bef511cb
commit
039d7cfb81
51 changed files with 4018 additions and 3208 deletions
29
crunchy-cli-core/Cargo.toml
Normal file
29
crunchy-cli-core/Cargo.toml
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
[package]
|
||||
name = "crunchy-cli-core"
|
||||
version = "0.1.0"
|
||||
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.
|
||||
static-ssl = ["crunchyroll-rs/static-ssl"]
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
async-trait = "0.1"
|
||||
clap = { version = "4.0", features = ["derive"] }
|
||||
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" }
|
||||
log = { version = "0.4", features = ["std"] }
|
||||
num_cpus = "1.13"
|
||||
regex = "1.6"
|
||||
signal-hook = "0.3"
|
||||
tempfile = "3.3"
|
||||
terminal_size = "0.2"
|
||||
tokio = { version = "1.21", features = ["macros", "rt-multi-thread", "time"] }
|
||||
sys-locale = "0.2"
|
||||
Loading…
Add table
Add a link
Reference in a new issue