Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
X3n0m0rph59 committed Jul 9, 2022
1 parent 96cb031 commit d224fae
Show file tree
Hide file tree
Showing 18 changed files with 699 additions and 794 deletions.
1,031 changes: 468 additions & 563 deletions Cargo.lock

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions eruption-audio-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,25 @@ resolver = "2"

[dependencies]
cfg-if = "1.0.0"
clap = { version = "3.1.6", features = ["derive"] }
clap_complete = "3.1.1"
serde = { version = "1.0.136", features = ["derive"] }
clap = { version = "3.2.8", features = ["derive"] }
clap_complete = "3.2.3"
serde = { version = "1.0.138", features = ["derive"] }
lazy_static = "1.4.0"
crossbeam = "0.8.1"
log = "0.4.14"
log = "0.4.17"
syslog = "6.0.1"
pretty_env_logger = "0.4.0"
libc = "0.2.120"
nix = "0.23.1"
parking_lot = { version = "0.12.0", features = ["deadlock_detection"] }
tokio = { version = "1.17.0", features = ["full"] }
libc = "0.2.126"
nix = "0.24.1"
parking_lot = { version = "0.12.1", features = ["deadlock_detection"] }
tokio = { version = "1.19.2", features = ["full"] }
socket2 = { version = "0.4.4", features = ["all"] }
ctrlc = { version = "3.2.1", features = ["termination"] }
ctrlc = { version = "3.2.2", features = ["termination"] }
#tracing = "0.1.26"
#tracing-futures = "0.2.5"
#tracing-subscriber = "0.2.20"
thiserror = "1.0.30"
eyre = "0.6.7"
thiserror = "1.0.31"
eyre = "0.6.8"
color-eyre = "0.6.1"
hound = "3.4.0"
bincode = "2.0.0-rc.1"
Expand All @@ -59,18 +59,18 @@ rust-pulsectl = { git = "https://github.com/X3n0m0rph59/pulsectl.git", branch =
# dbus-tree = "0.9.1"
byteorder = "1.4.3"
bytes = "1.1.0"
prost = "0.9.0"
prost-types = "0.9.0"
prost = "0.10.4"
prost-types = "0.10.1"
i18n-embed = { version = "0.13.4", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6.4"
rust-embed = "6.3.0"
rust-embed = "6.4.0"
unic-langid = "0.9.0"
hexdump = "0.1.1"
icecream = "0.1.0"

[dev-dependencies]
pretty_assertions = "1.2.0"
tokio = { version = "1.17.0", features = ["test-util"] }
pretty_assertions = "1.2.1"
tokio = { version = "1.19.2", features = ["test-util"] }

[build-dependencies]
prost-build = "0.9.0"
prost-build = "0.10.4"
26 changes: 13 additions & 13 deletions eruption-cmd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,30 +30,30 @@ resolver = "2"

[dependencies]
cfg-if = "1.0.0"
clap = { version = "3.1.6", features = ["derive"] }
clap_complete = "3.1.1"
ctrlc = { version = "3.2.1", features = ["termination"] }
clap = { version = "3.2.8", features = ["derive"] }
clap_complete = "3.2.3"
ctrlc = { version = "3.2.2", features = ["termination"] }
colored = "2.0.0"
log = "0.4.14"
log = "0.4.17"
pretty_env_logger = "0.4.0"
libc = "0.2.120"
nix = "0.23.1"
parking_lot = { version = "0.12.0", features = ["deadlock_detection"] }
tokio = { version = "1.17.0", features = ["full"] }
libc = "0.2.126"
nix = "0.24.1"
parking_lot = { version = "0.12.1", features = ["deadlock_detection"] }
tokio = { version = "1.19.2", features = ["full"] }
#tracing = "0.1.26"
#tracing-futures = "0.2.5"
#tracing-subscriber = "0.2.20"
crossbeam = "0.8.1"
thiserror = "1.0.30"
eyre = "0.6.7"
thiserror = "1.0.31"
eyre = "0.6.8"
color-eyre = "0.6.1"
lazy_static = "1.4.0"
i18n-embed = { version = "0.13.4", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6.4"
rust-embed = "6.3.0"
rust-embed = "6.4.0"
unic-langid = "0.9.0"
icecream = "0.1.0"

[dev-dependencies]
pretty_assertions = "1.2.0"
tokio = { version = "1.17.0", features = ["test-util"] }
pretty_assertions = "1.2.1"
tokio = { version = "1.19.2", features = ["test-util"] }
32 changes: 16 additions & 16 deletions eruption-debug-tool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,36 +32,36 @@ resolver = "2"
lazy_static = "1.4.0"
cfg-if = "1.0.0"
crossbeam = "0.8.1"
clap = { version = "3.1.6", features = ["derive"] }
clap_complete = "3.1.1"
clap = { version = "3.2.8", features = ["derive"] }
clap_complete = "3.2.3"
colored = "2.0.0"
ctrlc = { version = "3.2.1", features = ["termination"] }
log = "0.4.14"
ctrlc = { version = "3.2.2", features = ["termination"] }
log = "0.4.17"
pretty_env_logger = "0.4.0"
libc = "0.2.120"
nix = "0.23.1"
parking_lot = { version = "0.12.0", features = ["deadlock_detection"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
tokio = { version = "1.17.0", features = ["full"] }
libc = "0.2.126"
nix = "0.24.1"
parking_lot = { version = "0.12.1", features = ["deadlock_detection"] }
serde = { version = "1.0.138", features = ["derive"] }
serde_json = "1.0.82"
tokio = { version = "1.19.2", features = ["full"] }
#tracing = "0.1.26"
#tracing-futures = "0.2.5"
#tracing-subscriber = "0.2.20"
thiserror = "1.0.30"
eyre = "0.6.7"
thiserror = "1.0.31"
eyre = "0.6.8"
color-eyre = "0.6.1"
hexdump = "0.1.1"
hidapi = { git = "https://github.com/ruabmbua/hidapi-rs.git", branch = "master" }
bitvec = "1.0.0"
byteorder = "1.4.3"
serialport = "4.0.1"
serialport = "4.2.0"
crc8 = "0.1.1"
i18n-embed = { version = "0.13.4", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6.4"
rust-embed = "6.3.0"
rust-embed = "6.4.0"
unic-langid = "0.9.0"
icecream = "0.1.0"

[dev-dependencies]
pretty_assertions = "1.2.0"
tokio = { version = "1.17.0", features = ["test-util"] }
pretty_assertions = "1.2.1"
tokio = { version = "1.19.2", features = ["test-util"] }
54 changes: 27 additions & 27 deletions eruption-gui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,54 +35,54 @@ sourceview = ["sourceview4"]
[dependencies]
cfg-if = "1.0.0"
colored = "2.0.0"
log = "0.4.14"
log = "0.4.17"
pretty_env_logger = "0.4.0"
libc = "0.2.120"
nix = "0.23.1"
rayon = "1.5.1"
libc = "0.2.126"
nix = "0.24.1"
rayon = "1.5.3"
walkdir = "2.3.2"
parking_lot = { version = "0.12.0", features = ["deadlock_detection"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
tokio = { version = "1.17.0", features = ["full"] }
parking_lot = { version = "0.12.1", features = ["deadlock_detection"] }
serde = { version = "1.0.138", features = ["derive"] }
serde_json = "1.0.82"
tokio = { version = "1.19.2", features = ["full"] }
#tracing = "0.1.29"
#tracing-futures = "0.2.5"
#tracing-subscriber = "0.3.2"
config = "0.12.0"
uuid = { version = "1.0.0-alpha.1", features = ["serde", "v4"] }
toml = "0.5.8"
config = "0.13.1"
uuid = { version = "1.1.2", features = ["serde", "v4"] }
toml = "0.5.9"
byteorder = "1.4.3"
itertools = "0.10.3"
lazy_static = "1.4.0"
palette = "0.6.0"
thiserror = "1.0.30"
eyre = "0.6.7"
thiserror = "1.0.31"
eyre = "0.6.8"
color-eyre = "0.6.1"
paste = "1.0.6"
paste = "1.0.7"
dbus = "0.9.5"
dbus-tokio = "0.7.5"
cairo-rs = "0.15.6"
glib = "0.15.9"
glib-macros = "0.15.6"
gio = "0.15.7"
cairo-rs = "0.15.12"
glib = "0.15.12"
glib-macros = "0.15.11"
gio = "0.15.12"
gdk = "0.15.4"
gdk-pixbuf = "0.15.6"
pango = "0.15.7"
glib-sys = "0.15.7"
gdk-pixbuf = "0.15.11"
pango = "0.15.10"
glib-sys = "0.15.10"
gtk-sys = "0.15.3"
gobject-sys = "0.15.9"
gio-sys = "0.15.7"
gobject-sys = "0.15.10"
gio-sys = "0.15.10"
gdk-sys = "0.15.1"
gtk = { version = "0.15.4", features = ["v3_20"] }
gtk = { version = "0.15.5", features = ["v3_20"] }
pangocairo = "0.15.1"
sourceview4 = { version = "0.3.0", optional = true }
# sourceview4 = { git = "https://gitlab.gnome.org/World/Rust/sourceview4-rs" }
i18n-embed = { version = "0.13.4", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6.4"
rust-embed = "6.3.0"
rust-embed = "6.4.0"
unic-langid = "0.9.0"
icecream = "0.1.0"
pretty_assertions = "1.2.0"
pretty_assertions = "1.2.1"

[dev-dependencies]
tokio = { version = "1.17.0", features = ["test-util"] }
tokio = { version = "1.19.2", features = ["test-util"] }
22 changes: 11 additions & 11 deletions eruption-hotplug-helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,29 +30,29 @@ resolver = "2"

[dependencies]
cfg-if = "1.0.0"
clap = { version = "3.1.6", features = ["derive"] }
clap_complete = "3.1.1"
log = "0.4.14"
clap = { version = "3.2.8", features = ["derive"] }
clap_complete = "3.2.3"
log = "0.4.17"
syslog = "6.0.1"
lazy_static = "1.4.0"
pretty_env_logger = "0.4.0"
libc = "0.2.120"
parking_lot = { version = "0.12.0", features = ["deadlock_detection"] }
tokio = { version = "1.17.0", features = ["full"] }
libc = "0.2.126"
parking_lot = { version = "0.12.1", features = ["deadlock_detection"] }
tokio = { version = "1.19.2", features = ["full"] }
#tracing = "0.1.26"
#tracing-futures = "0.2.5"
#tracing-subscriber = "0.2.20"
thiserror = "1.0.30"
eyre = "0.6.7"
thiserror = "1.0.31"
eyre = "0.6.8"
color-eyre = "0.6.1"
lockfile = "0.3.0"
i18n-embed = { version = "0.13.4", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6.4"
rust-embed = "6.3.0"
rust-embed = "6.4.0"
unic-langid = "0.9.0"
icecream = "0.1.0"
eruption-rs = { path = "../sdk/lib/rust/eruption-rs" }

[dev-dependencies]
pretty_assertions = "1.2.0"
tokio = { version = "1.17.0", features = ["test-util"] }
pretty_assertions = "1.2.1"
tokio = { version = "1.19.2", features = ["test-util"] }
36 changes: 18 additions & 18 deletions eruption-hwutil/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,39 +32,39 @@ resolver = "2"
cfg-if = "1.0.0"
crossbeam = "0.8.1"
lazy_static = "1.4.0"
clap = { version = "3.1.6", features = ["derive"] }
clap_complete = "3.1.1"
ctrlc = { version = "3.2.1", features = ["termination"] }
clap = { version = "3.2.8", features = ["derive"] }
clap_complete = "3.2.3"
ctrlc = { version = "3.2.2", features = ["termination"] }
colored = "2.0.0"
console = "0.15.0"
log = "0.4.14"
log = "0.4.17"
pretty_env_logger = "0.4.0"
libc = "0.2.120"
nix = "0.23.1"
parking_lot = { version = "0.12.0", features = ["deadlock_detection"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
tokio = { version = "1.17.0", features = ["full"] }
libc = "0.2.126"
nix = "0.24.1"
parking_lot = { version = "0.12.1", features = ["deadlock_detection"] }
serde = { version = "1.0.138", features = ["derive"] }
serde_json = "1.0.82"
tokio = { version = "1.19.2", features = ["full"] }
#tracing = "0.1.26"
#tracing-futures = "0.2.5"
#tracing-subscriber = "0.2.20"
config = "0.12.0"
toml = "0.5.8"
thiserror = "1.0.30"
eyre = "0.6.7"
config = "0.13.1"
toml = "0.5.9"
thiserror = "1.0.31"
eyre = "0.6.8"
color-eyre = "0.6.1"
bitvec = "1.0.0"
byteorder = "1.4.3"
hidapi = { git = "https://github.com/ruabmbua/hidapi-rs.git", branch = "master" }
hexdump = "0.1.1"
serialport = "4.0.1"
serialport = "4.2.0"
crc8 = "0.1.1"
i18n-embed = { version = "0.13.4", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6.4"
rust-embed = "6.3.0"
rust-embed = "6.4.0"
unic-langid = "0.9.0"
icecream = "0.1.0"

[dev-dependencies]
pretty_assertions = "1.2.0"
tokio = { version = "1.17.0", features = ["test-util"] }
pretty_assertions = "1.2.1"
tokio = { version = "1.19.2", features = ["test-util"] }
Loading

0 comments on commit d224fae

Please sign in to comment.