From d9e07b37e688f2bce099ea16fb78a90001704037 Mon Sep 17 00:00:00 2001 From: ThetaDev Date: Mon, 6 Feb 2023 19:54:52 +0100 Subject: [PATCH] fix: use quick-js-dtp crate --- Cargo.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e429901..22f4e6c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "rustypipe" version = "0.1.0" edition = "2021" -authors = ["ThetaDev"] +authors = ["ThetaDev "] license = "GPL-3.0" description = "Client for the public YouTube / YouTube Music API (Innertube), inspired by NewPipe" keywords = ["youtube", "video", "music"] @@ -23,8 +23,9 @@ rustls-tls-webpki-roots = ["reqwest/rustls-tls-webpki-roots"] rustls-tls-native-roots = ["reqwest/rustls-tls-native-roots"] [dependencies] -# quick-js = "0.4.1" -quick-js = { path = "../quickjs-rs", default-features = false } +quick-js-dtp = { version = "0.4.1", default-features = false, features = [ + "patch-dateparser", +] } once_cell = "1.12.0" regex = "1.6.0" fancy-regex = "0.11.0"