Skip to content

Commit

Permalink
fix: update log crate
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Nov 1, 2023
1 parent f2ba07d commit 3e6bdc3
Show file tree
Hide file tree
Showing 4 changed files with 134 additions and 54 deletions.
98 changes: 89 additions & 9 deletions Cargo.lock

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

26 changes: 13 additions & 13 deletions audio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "music-player-audio"
version = "0.1.6"
edition = "2021"
repository = "https://github.com/tsirysndr/music-player"
license = "MIT"
authors = ["Tsiry Sandratraina <tsiry.sndr@aol.com>"]
description = "The audio fetching logic for music player"
edition = "2021"
license = "MIT"
name = "music-player-audio"
repository = "https://github.com/tsirysndr/music-player"
version = "0.1.6"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -17,16 +17,16 @@ version = "0.1.3"
anyhow = "1.0.68"
bytes = "1.3.0"
futures-util = "0.3.25"
hyper = { version = "0.14.23", features = ["client", "stream", "tcp", "http1", "http2"] }
hyper = {version = "0.14.23", features = ["client", "stream", "tcp", "http1", "http2"]}
hyper-rustls = "0.24.0"
log = "0.4.20"
md5 = "0.7.0"
mime_guess = "2.0.4"
parking_lot = "0.12.1"
rustls = {version = "0.21.0", features = ["dangerous_configuration"]}
symphonia = {version = "0.5.1", features = ["aac", "alac", "mp3", "isomp4", "flac"]}
tempfile = "3.3.0"
thiserror = "1.0.38"
tokio = { version = "1.23.0", features = ["full"] }
symphonia = { version = "0.5.1", features = ["aac", "alac", "mp3", "isomp4", "flac"] }
hyper-rustls = "0.24.0"
rustls = { version = "0.21.0", features = ["dangerous_configuration"] }
mime_guess = "2.0.4"
tokio = {version = "1.23.0", features = ["full"]}
url = "2.3.1"
md5 = "0.7.0"
log = "0.4.17"
webpki-roots = "0.23.0"
26 changes: 13 additions & 13 deletions playback/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "music-player-playback"
version = "0.1.13"
edition = "2021"
repository = "https://github.com/tsirysndr/music-player"
license = "MIT"
authors = ["Tsiry Sandratraina <tsiry.sndr@aol.com>"]
description = "The playback logic for music player"
edition = "2021"
license = "MIT"
name = "music-player-playback"
repository = "https://github.com/tsirysndr/music-player"
version = "0.1.13"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -22,20 +22,20 @@ path = "../audio"
version = "0.1.1"

[dependencies]
async-trait = "0.1.57"
cpal = "0.15"
futures-util = "0.3.24"
lazy_static = "1.4.0"
librespot-protocol = "0.4.2"
log = "0.4.17"
log = "0.4.20"
owo-colors = "3.5.0"
parking_lot = "0.12.1"
rand = { version = "0.8.5", features = ["small_rng"] }
rand = {version = "0.8.5", features = ["small_rng"]}
rand_distr = "0.4.3"
rb = "0.4.1"
rodio = { version = "0.17.1" }
symphonia = { version = "0.5.1", features = ["aac", "alac", "mp3", "isomp4", "flac"] }
rodio = {version = "0.17.1"}
symphonia = {version = "0.5.1", features = ["aac", "alac", "mp3", "isomp4", "flac"]}
thiserror = "1.0.34"
tokio = { version = "1.21.0", features = ["full"] }
zerocopy = "0.6.1"
owo-colors = "3.5.0"
async-trait = "0.1.57"
tokio = {version = "1.21.0", features = ["full"]}
url = "2.3.1"
zerocopy = "0.6.1"
38 changes: 19 additions & 19 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "music-player-server"
version = "0.2.0"
edition = "2021"
repository = "https://github.com/tsirysndr/music-player"
license = "MIT"
authors = ["Tsiry Sandratraina <tsiry.sndr@aol.com>"]
categories = ["command-line-utilities"]
keywords = ["tokio", "music", "cli", "daemon", "streaming"]
description = "The server API for the music player"
edition = "2021"
keywords = ["tokio", "music", "cli", "daemon", "streaming"]
license = "MIT"
name = "music-player-server"
repository = "https://github.com/tsirysndr/music-player"
version = "0.2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down Expand Up @@ -40,24 +40,24 @@ path = "../types"
version = "0.1.3"

[dependencies]
chrono = "0.4.23"
cuid = "1.2.0"
futures = "0.3.24"
futures-channel = "0.3.24"
futures-util = "0.3.24"
log = "0.4.20"
md5 = "0.7.0"
owo-colors = "3.5.0"
prost = "0.11.0"
sea-orm = { version = "0.9.2", features = ["runtime-tokio-rustls", "sqlx-sqlite"] }
tokio = { version = "1.21.0", features = ["full"] }
sea-orm = {version = "0.9.2", features = ["runtime-tokio-rustls", "sqlx-sqlite"]}
serde = "1.0.145"
tokio = {version = "1.21.0", features = ["full"]}
tokio-stream = {version = "0.1.12", features = ["net"]}
tokio-tungstenite = "0.17.2"
tonic = "0.8.1"
tonic-web = "0.4.0"
futures = "0.3.24"
cuid = "1.2.0"
md5 = "0.7.0"
uuid = "1.1.2"
tungstenite = "0.17.3"
tokio-tungstenite = "0.17.2"
futures-channel = "0.3.24"
futures-util = "0.3.24"
serde = "1.0.145"
chrono = "0.4.23"
tokio-stream = { version = "0.1.12", features = ["net"] }
log = "0.4.17"
uuid = "1.1.2"

[build-dependencies]
tonic-build = "0.8"

0 comments on commit 3e6bdc3

Please sign in to comment.