refactor!: move downloader to seperate crate
This commit is contained in:
parent
a741a61a30
commit
e063c04821
8 changed files with 96 additions and 83 deletions
|
|
@ -10,7 +10,7 @@ keywords = ["youtube", "video", "music"]
|
|||
include = ["/src", "README.md", "LICENSE", "!snapshots"]
|
||||
|
||||
[workspace]
|
||||
members = [".", "codegen", "cli"]
|
||||
members = [".", "codegen", "downloader", "cli"]
|
||||
|
||||
[features]
|
||||
default = ["default-tls"]
|
||||
|
|
@ -34,9 +34,8 @@ reqwest = { version = "0.11.11", default-features = false, features = [
|
|||
"json",
|
||||
"gzip",
|
||||
"brotli",
|
||||
"stream",
|
||||
] }
|
||||
tokio = { version = "1.20.0", features = ["macros", "time", "fs", "process"] }
|
||||
tokio = { version = "1.20.0", features = ["macros", "time"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0.82"
|
||||
serde_with = { version = "2.0.0", features = ["json"] }
|
||||
|
|
@ -47,8 +46,6 @@ time = { version = "0.3.15", features = [
|
|||
"serde-well-known",
|
||||
] }
|
||||
futures = "0.3.21"
|
||||
indicatif = "0.17.0"
|
||||
filenamify = "0.1.0"
|
||||
ress = "0.11.4"
|
||||
phf = "0.11.1"
|
||||
base64 = "0.13.0"
|
||||
|
|
|
|||
Reference in a new issue