Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
2.0.0 - Back Online!
Browse files Browse the repository at this point in the history
  • Loading branch information
ShayBox committed Mar 24, 2024
1 parent bd70bd5 commit 33a36bf
Show file tree
Hide file tree
Showing 16 changed files with 364 additions and 297 deletions.
61 changes: 45 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = ["common", "manager", "proxy"]

[workspace.package]
description = "Playing YouTube videos cross-platform in VRChat"
version = "1.9.0"
version = "2.0.0"
authors = ["Shayne Hartford <shaybox@shaybox.com>"]
edition = "2021"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# VRC-YT
Playing [YouTube] videos cross-platform in [VRChat]

## Archive Notice:
## Notice:
VRChat added `yt-dlp` support to Android/Quest, making this proxy useless.

## Proxy
Expand Down
14 changes: 10 additions & 4 deletions common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,18 @@ license.workspace = true

[dependencies]
serde_json = { version = "1", optional = true }
sqlx = { version = "0.7", features = ["mysql", "json", "time"], optional = true }
sqlx = { version = "0.7", features = ["json", "mysql", "time"], optional = true }
thiserror = "1"
which = "6"
youtube_dl = "0.9"

[features]
native-tls = ["youtube_dl/downloader-native-tls", "sqlx?/runtime-tokio-native-tls"]
rustls-tls = ["youtube_dl/downloader-rustls-tls", "sqlx?/runtime-tokio-rustls"]
database = ["dep:sqlx", "dep:serde_json"]
database = ["dep:serde_json", "dep:sqlx"]
native-tls = ["sqlx?/runtime-tokio-native-tls", "youtube_dl/downloader-native-tls"]
rustls-tls = ["sqlx?/runtime-tokio-rustls", "youtube_dl/downloader-rustls-tls"]

[lints.clippy]
missing_errors_doc = "allow"
multiple_crate_versions = "allow"
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
Loading

0 comments on commit 33a36bf

Please sign in to comment.