Skip to content

Commit

Permalink
Update dependencies across whole workspace (#1411)
Browse files Browse the repository at this point in the history
  • Loading branch information
hubcio authored Dec 31, 2024
1 parent 8f53b60 commit 68f7fca
Show file tree
Hide file tree
Showing 11 changed files with 154 additions and 153 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bnjbvr/cargo-machete@v0.6.2
- uses: bnjbvr/cargo-machete@v0.7.0

check-commit-message:
name: Validate commit messages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: rustsec/audit-check@v1.4.1
- uses: rustsec/audit-check@v2.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
clippy:
Expand Down
53 changes: 27 additions & 26 deletions Cargo.lock

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

20 changes: 10 additions & 10 deletions bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
[package]
name = "bench"
version = "0.1.1"
version = "0.1.2"
edition = "2021"

[dependencies]
async-trait = "0.1.82"
clap = { version = "4.5.17", features = ["derive"] }
colored = "2.0.4"
async-trait = "0.1.83"
clap = { version = "4.5.23", features = ["derive"] }
colored = "2.2.0"
csv = "1.3.1"
derive-new = "0.7.0"
derive_more = "1.0.0"
figlet-rs = "0.1.5"
futures = "0.3.30"
futures = "0.3.31"
human_format = "1.1.0"
iggy = { path = "../sdk" }
integration = { path = "../integration" }
nonzero_lit = "0.1.2"
serde = { version = "1.0.210", features = ["derive"] }
tokio = { version = "1.40.0", features = ["full"] }
toml = "0.8.14"
tracing = { version = "0.1.37" }
tracing-subscriber = { version = "0.3.18", features = ["fmt", "env-filter"] }
serde = { version = "1.0.217", features = ["derive"] }
tokio = { version = "1.42.0", features = ["full"] }
toml = "0.8.19"
tracing = { version = "0.1.41" }
tracing-subscriber = { version = "0.3.19", features = ["fmt", "env-filter"] }

[[bin]]
name = "iggy-bench"
Expand Down
18 changes: 9 additions & 9 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iggy-cli"
version = "0.8.4"
version = "0.8.5"
edition = "2021"
authors = ["[email protected]"]
repository = "https://github.com/iggy-rs/iggy"
Expand All @@ -16,18 +16,18 @@ login-session = ["dep:keyring"]

[dependencies]
ahash = { version = "0.8.11", features = ["serde"] }
anyhow = "1.0.86"
clap = { version = "4.5.17", features = ["derive"] }
clap_complete = "4.5.26"
anyhow = "1.0.95"
clap = { version = "4.5.23", features = ["derive"] }
clap_complete = "4.5.40"
figlet-rs = "0.1.5"
iggy = { path = "../sdk", features = ["iggy-cli"], version = "0.6.60" }
keyring = { version = "3.2.0", features = ["sync-secret-service", "vendored"], optional = true }
keyring = { version = "3.6.1", features = ["sync-secret-service", "vendored"], optional = true }
passterm = "=2.0.1"
thiserror = "2.0.9"
tokio = { version = "1.40.0", features = ["full"] }
tracing = "0.1.37"
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3.18", default-features = false, features = ["fmt", "env-filter"] }
tokio = { version = "1.42.0", features = ["full"] }
tracing = "0.1.41"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt", "env-filter"] }

[[bin]]
name = "iggy"
Expand Down
20 changes: 10 additions & 10 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iggy_examples"
version = "0.0.4"
version = "0.0.5"
edition = "2021"

[[example]]
Expand Down Expand Up @@ -53,14 +53,14 @@ path = "src/new-sdk/producer/main.rs"

[dependencies]
ahash = { version = "0.8.11", features = ["serde"] }
anyhow = "1.0.86"
bytes = "1.6.0"
clap = { version = "4.5.17", features = ["derive"] }
futures-util = "0.3.30"
anyhow = "1.0.95"
bytes = "1.9.0"
clap = { version = "4.5.23", features = ["derive"] }
futures-util = "0.3.31"
iggy = { path = "../sdk" }
rand = "0.8.5"
serde = { version = "1.0.210", features = ["derive", "rc"] }
serde_json = "1.0.127"
tokio = { version = "1.40.0", features = ["full"] }
tracing = { version = "0.1.37" }
tracing-subscriber = { version = "0.3.18", features = ["fmt", "env-filter"] }
serde = { version = "1.0.217", features = ["derive", "rc"] }
serde_json = "1.0.134"
tokio = { version = "1.42.0", features = ["full"] }
tracing = { version = "0.1.41" }
tracing-subscriber = { version = "0.3.19", features = ["fmt", "env-filter"] }
36 changes: 18 additions & 18 deletions integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,30 @@ edition = "2021"

[dependencies]
ahash = { version = "0.8.11", features = ["serde"] }
assert_cmd = "2.0.14"
async-trait = "0.1.82"
bytes = "1.6.0"
chrono = "0.4.38"
ctor = "0.2.8"
assert_cmd = "2.0.16"
async-trait = "0.1.83"
bytes = "1.9.0"
chrono = "0.4.39"
ctor = "0.2.9"
derive_more = "1.0.0"
env_logger = "0.11.5"
futures = "0.3.30"
env_logger = "0.11.6"
futures = "0.3.31"
humantime = "2.1.0"
iggy = { path = "../sdk", features = ["iggy-cli"] }
keyring = "3.2.1"
keyring = "3.6.1"
lazy_static = "1.5.0"
libc = "0.2.158"
libc = "0.2.169"
log = "0.4.22"
predicates = "3.1.0"
regex = "1.10.4"
serial_test = "3.1.1"
predicates = "3.1.3"
regex = "1.11.1"
serial_test = "3.2.0"
server = { path = "../server" }
tempfile = "3.10.1"
tokio = { version = "1.40.0", features = ["full"] }
tracing-subscriber = { version = "0.3.18", features = ["fmt", "env-filter"] }
uuid = { version = "1.1.0", features = ["v7", "fast-rng", "zerocopy"] }
xxhash-rust = { version = "0.8.12", features = ["xxh32"] }
zip = "2.2.0"
tempfile = "3.14.0"
tokio = { version = "1.42.0", features = ["full"] }
tracing-subscriber = { version = "0.3.19", features = ["fmt", "env-filter"] }
uuid = { version = "1.11.0", features = ["v7", "fast-rng", "zerocopy"] }
xxhash-rust = { version = "0.8.15", features = ["xxh32"] }
zip = "2.2.2"

# Some tests are failing in CI due to lack of IPv6 interfaces
# inside the docker containers. This is a temporary workaround (hopefully).
Expand Down
Loading

0 comments on commit 68f7fca

Please sign in to comment.