tydle 0.1.3

YouTube video extractor written in Rust that can be used anywhere in web or native environments, based on an extremely small subset of yt-dlp.
Documentation
[[bin]]
name = "tydle"
path = "src/main.rs"
required-features = ["logging", "cli"]

[dependencies.anyhow]
version = "1.0.100"

[dependencies.fancy-regex]
version = "0.16.2"

[dependencies.log]
optional = true
version = "0.4"

[dependencies.maplit]
version = "1.0.2"

[dependencies.once_cell]
version = "1.21.3"

[dependencies.phf]
version = "0.13.1"

[dependencies.rayon]
version = "1.11.0"

[dependencies.reqwest]
features = ["json"]
version = "0.12.24"

[dependencies.serde]
features = ["derive"]
version = "1.0.228"

[dependencies.serde_json]
version = "1.0.145"

[dependencies.sha1]
version = "0.10.6"

[dependencies.url]
version = "2.5.7"

[features]
cli = ["dep:clap"]
default = ["logging", "cli"]
logging = ["dep:log", "dep:env_logger"]

[lib]
crate-type = ["cdylib", "rlib"]
name = "tydle"
path = "src/lib.rs"

[package]
authors = ["Dev-Siri"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["multimedia", "web-programming", "api-bindings"]
description = "YouTube video extractor written in Rust that can be used anywhere in web or native environments, based on an extremely small subset of yt-dlp."
documentation = "https://docs.rs/tydle"
edition = "2024"
homepage = "https://github.com/Dev-Siri/tydle"
include = ["src/**/*", "Cargo.toml", "README.md", "LICENSE"]
keywords = ["youtube", "extractor", "yt-dlp", "video", "innertube"]
license = "MIT"
name = "tydle"
readme = "README.md"
repository = "https://github.com/Dev-Siri/tydle"
version = "0.1.3"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.clap]
features = ["derive"]
optional = true
version = "4.5.51"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.colored]
version = "3"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.deno_core]
version = "0.311.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.env_logger]
optional = true
version = "0.11"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.num_cpus]
version = "1.17.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
features = ["full"]
version = "1"

[target.'cfg(target_arch = "wasm32")'.dependencies.js-sys]
version = "0.3.82"

[target.'cfg(target_arch = "wasm32")'.dependencies.serde-wasm-bindgen]
version = "0.4"

[target.'cfg(target_arch = "wasm32")'.dependencies.tsify]
version = "0.5.6"

[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2"

[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen-futures]
version = "0.4"