Skip to content

Commit

Permalink
chore(deps): bump deps + bump version to 0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mrene committed Jun 7, 2022
1 parent 441fe20 commit 79bcc1f
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 69 deletions.
74 changes: 21 additions & 53 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions daemon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Mathieu Rene <[email protected]>"]
edition = "2021"
name = "minidsp-daemon"
version = "0.1.6"
version = "0.1.7"
license = "Apache-2.0"
description = "A control interface for some MiniDSP products"
repository = "https://github.com/mrene/minidsp-rs"
Expand All @@ -23,7 +23,7 @@ env_logger = "0.9.0"
futures = "0.3.21"
futures-sink = "0.3.21"
futures-util = "0.3.21"
hyper = "0.14.18"
hyper = "0.14.19"
hyper-tungstenite = "0.8.0"
lazy_static = "1.4.0"
log = "0.4.17"
Expand All @@ -38,16 +38,16 @@ serde_json = "1.0.81"
strum = { version = "0.24.0", features = ["derive"], optional = true }
termcolor = "1.1.3"
thiserror = "1.0.31"
tokio-stream = { version = "0.1.8", features = ["sync"] }
tokio-stream = { version = "0.1.9", features = ["sync"] }
url2 = "0.0.6"

[dependencies.tokio]
features = ["rt-multi-thread", "net", "fs", "macros", "io-util"]
version = "1.18.2"
version = "1.19.2"

[dependencies.tokio-util]
features = ["net", "codec", "io"]
version = "0.7.2"
version = "0.7.3"

[target.'cfg(target_family="unix")'.dependencies]
hyperlocal = "0.8.0"
Expand Down
6 changes: 3 additions & 3 deletions devtools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Mathieu Rene <[email protected]>"]
edition = "2021"
name = "minidsp-devtools"
version = "0.1.6"
version = "0.1.7"
license = "Apache-2.0"

[features]
Expand All @@ -29,8 +29,8 @@ quote = "1.0.18"

[dependencies.tokio]
features = ["rt-multi-thread", "net", "fs", "macros", "io-util"]
version = "1.18.2"
version = "1.19.2"

[dependencies.tokio-util]
features = ["net", "codec", "io"]
version = "0.7.2"
version = "0.7.3"
14 changes: 7 additions & 7 deletions minidsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ keywords = ["minidsp", "audio", "dsp"]
license = "Apache-2.0"
name = "minidsp"
repository = "https://github.com/mrene/minidsp-rs"
version = "0.1.6"
version = "0.1.7"

[dependencies]
anyhow = "1.0.57"
async-trait = "0.1.53"
async-trait = "0.1.56"
atomic_refcell = "0.1.8"
bimap = "0.6.2"
bytes = "1.1.0"
Expand All @@ -22,10 +22,10 @@ futures-sink = "0.3.21"
futures-util = "0.3.21"
hex = "0.4.3"
hexplay = "0.2.1"
hyper = "0.14.18"
hyper = "0.14.19"
lazy_static = "1.4.0"
log = "0.4.17"
minidsp-protocol = {path = "../protocol", version = "0.1.6", default-features = false, features = ["use_serde", "debug", "devices"]}
minidsp-protocol = {path = "../protocol", version = "0.1.7", default-features = false, features = ["use_serde", "debug", "devices"]}
pin-project = "1.0.10"
schemars = "0.8.10"
serde = { version = "1.0.137", features = ["derive"] }
Expand All @@ -35,7 +35,7 @@ strong-xml = "0.6.3"
strum = { version = "0.24.0", features = ["derive"] }
termcolor = "1.1.3"
thiserror = "1.0.31"
tokio-stream = { version = "0.1.8", features = ["sync"] }
tokio-stream = { version = "0.1.9", features = ["sync"] }
tokio-tungstenite = "0.17.1"
tower = { version = "0.4.12", features = ["util", "timeout"] }
url2 = "0.0.6"
Expand All @@ -54,11 +54,11 @@ version = "1.4.1"

[dependencies.tokio]
features = ["rt-multi-thread", "net", "fs", "macros", "io-util"]
version = "1.18.2"
version = "1.19.2"

[dependencies.tokio-util]
features = ["net", "codec", "io"]
version = "0.7.2"
version = "0.7.3"

[target.'cfg(target_family="unix")'.dependencies]
hyperlocal = "0.8.0"
Expand Down
2 changes: 1 addition & 1 deletion protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Mathieu Rene <[email protected]>"]
edition = "2021"
name = "minidsp-protocol"
version = "0.1.6"
version = "0.1.7"
license = "Apache-2.0"
description = "A control interface for some MiniDSP products"
repository = "https://github.com/mrene/minidsp-rs"
Expand Down

0 comments on commit 79bcc1f

Please sign in to comment.