Compare commits
3 commits
9afa5ff0cc
...
df9d047e48
Author | SHA1 | Date | |
---|---|---|---|
df9d047e48 | |||
9d9c2318d4 | |||
e0f795ee82 |
6 changed files with 48 additions and 18 deletions
20
Cargo.toml
20
Cargo.toml
|
@ -1,19 +1,27 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rustypipe"
|
name = "rustypipe"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
authors = ["ThetaDev <thetadev@magenta.de>"]
|
authors.workspace = true
|
||||||
license = "GPL-3.0"
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
keywords.workspace = true
|
||||||
|
categories.workspace = true
|
||||||
description = "Client for the public YouTube / YouTube Music API (Innertube), inspired by NewPipe"
|
description = "Client for the public YouTube / YouTube Music API (Innertube), inspired by NewPipe"
|
||||||
repository = "https://code.thetadev.de/ThetaDev/rustypipe"
|
|
||||||
keywords = ["youtube", "video", "music"]
|
|
||||||
categories = ["api-bindings", "multimedia"]
|
|
||||||
|
|
||||||
include = ["/src", "README.md", "LICENSE", "!snapshots"]
|
include = ["/src", "README.md", "LICENSE", "!snapshots"]
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [".", "codegen", "downloader", "cli"]
|
members = [".", "codegen", "downloader", "cli"]
|
||||||
|
|
||||||
|
[workspace.package]
|
||||||
|
edition = "2021"
|
||||||
|
authors = ["ThetaDev <thetadev@magenta.de>"]
|
||||||
|
license = "GPL-3.0"
|
||||||
|
repository = "https://code.thetadev.de/ThetaDev/rustypipe"
|
||||||
|
keywords = ["youtube", "video", "music"]
|
||||||
|
categories = ["api-bindings", "multimedia"]
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
quick-js-dtp = { version = "0.4.1", default-features = false, features = [
|
quick-js-dtp = { version = "0.4.1", default-features = false, features = [
|
||||||
"patch-dateparser",
|
"patch-dateparser",
|
||||||
|
|
9
cli/CHANGELOG.md
Normal file
9
cli/CHANGELOG.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## v0.1.0 - 2024-03-22
|
||||||
|
|
||||||
|
Initial release
|
||||||
|
|
||||||
|
<!-- generated by git-cliff -->
|
|
@ -1,12 +1,13 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rustypipe-cli"
|
name = "rustypipe-cli"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
authors = ["ThetaDev <t.testboy@gmail.com>"]
|
authors.workspace = true
|
||||||
license = "GPL-3.0"
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
keywords.workspace = true
|
||||||
|
categories.workspace = true
|
||||||
description = "CLI for RustyPipe - download videos and extract data from YouTube / YouTube Music"
|
description = "CLI for RustyPipe - download videos and extract data from YouTube / YouTube Music"
|
||||||
keywords = ["youtube", "video", "music"]
|
|
||||||
categories = ["multimedia"]
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["rustls-tls-native-roots"]
|
default = ["rustls-tls-native-roots"]
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rustypipe-codegen"
|
name = "rustypipe-codegen"
|
||||||
version = "0.1.0"
|
edition.workspace = true
|
||||||
edition = "2021"
|
authors.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
9
downloader/CHANGELOG.md
Normal file
9
downloader/CHANGELOG.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## v0.1.0 - 2024-03-22
|
||||||
|
|
||||||
|
Initial release
|
||||||
|
|
||||||
|
<!-- generated by git-cliff -->
|
|
@ -1,12 +1,13 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rustypipe-downloader"
|
name = "rustypipe-downloader"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
authors = ["ThetaDev <t.testboy@gmail.com>"]
|
authors.workspace = true
|
||||||
license = "GPL-3.0"
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
keywords.workspace = true
|
||||||
|
categories.workspace = true
|
||||||
description = "Downloader extension for RustyPipe"
|
description = "Downloader extension for RustyPipe"
|
||||||
keywords = ["youtube", "video", "music"]
|
|
||||||
categories = ["multimedia"]
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["default-tls"]
|
default = ["default-tls"]
|
||||||
|
|
Loading…
Reference in a new issue