# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "invidious" version = "0.7.6" authors = ["Siriusmart"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Get information about videos from YouTube with this simple Invidious API wrapper. Does not use the YouTube API (No tokens required)" readme = "README.md" keywords = [ "youtube", "invidious", "api", "wrapper", ] categories = ["api-bindings"] license = "AGPL-3.0" repository = "https://github.com/Siriusmart/invidious-rs" [package.metadata.docs.rs] all-features = true [lib] name = "invidious" path = "src/lib.rs" [dependencies.async-trait] version = "0.1" optional = true [dependencies.http_req] version = "0.12" optional = true [dependencies.isahc] version = "1.7" optional = true [dependencies.minreq] version = "2.7" optional = true [dependencies.reqwest] version = "0.12" optional = true [dependencies.serde] version = "1.0" features = ["derive"] [dependencies.serde_json] version = "1.0" [dependencies.ureq] version = "2.6" optional = true [dev-dependencies.tokio] version = "1" features = [ "macros", "rt", "rt-multi-thread", ] [features] async = ["async-trait"] default = ["httpreq_sync"] httpreq_sync = [ "dep:http_req", "sync", ] isahc_async = [ "dep:isahc", "async", ] isahc_sync = [ "dep:isahc", "sync", ] minreq = ["dep:minreq"] minreq_http_sync = [ "dep:minreq", "sync", ] minreq_sync = [ "minreq/https", "sync", ] reqwest_async = [ "reqwest", "async", ] reqwest_sync = [ "reqwest/blocking", "sync", ] sync = [] ureq_sync = [ "dep:ureq", "sync", ]