fixed missing search video count, error on missing search channel description snipped, error on empty channel info link list,
22 lines
404 B
Rust
22 lines
404 B
Rust
//! # RustyPipe
|
|
//!
|
|
//! Client for the public YouTube / YouTube Music API (Innertube),
|
|
//! inspired by [NewPipe](https://github.com/TeamNewPipe/NewPipeExtractor).
|
|
|
|
#![warn(clippy::todo, clippy::dbg_macro)]
|
|
|
|
#[macro_use]
|
|
mod macros;
|
|
|
|
mod deobfuscate;
|
|
mod serializer;
|
|
mod util;
|
|
|
|
pub mod cache;
|
|
pub mod client;
|
|
pub mod download;
|
|
pub mod error;
|
|
pub mod model;
|
|
pub mod param;
|
|
pub mod report;
|
|
pub mod timeago;
|