initial commit

This commit is contained in:
yggverse 2026-04-08 12:05:46 +03:00
parent bb39b5b504
commit 8dcd80b9fe
6 changed files with 113 additions and 8 deletions

30
Cargo.lock generated
View file

@ -635,6 +635,16 @@ dependencies = [
"pin-project-lite",
]
[[package]]
name = "http_req"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92208b0986f414edaca8ede2c6962c979309346a9e8e19d07d0a7879aae1549e"
dependencies = [
"native-tls",
"unicase",
]
[[package]]
name = "httparse"
version = "1.10.1"
@ -851,6 +861,17 @@ dependencies = [
"serde_core",
]
[[package]]
name = "invidious"
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa2cff01a915c4780785828f6bec4ad5f8d03f34307d4183ca210830a8a6d88d"
dependencies = [
"http_req",
"serde",
"serde_json",
]
[[package]]
name = "ipnet"
version = "2.12.0"
@ -1980,6 +2001,12 @@ version = "1.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
[[package]]
name = "unicase"
version = "2.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
[[package]]
name = "unicode-ident"
version = "1.0.24"
@ -2458,12 +2485,13 @@ dependencies = [
[[package]]
name = "ytd"
version = "0.3.2"
version = "0.4.0"
dependencies = [
"anyhow",
"chrono",
"clap",
"env_logger",
"invidious",
"log",
"redb",
"regex",