Skip to content

Commit 3cd705f

Browse files
build(deps): bump the dependencies group across 1 directory with 3 updates (#28)
Bumps the dependencies group with 3 updates in the / directory: [tracing](https://github.com/tokio-rs/tracing), [serde_json](https://github.com/serde-rs/json) and [roaring](https://github.com/RoaringBitmap/roaring-rs). Updates `tracing` from 0.1.43 to 0.1.44 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](tokio-rs/tracing@tracing-0.1.43...tracing-0.1.44) Updates `serde_json` from 1.0.145 to 1.0.148 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@v1.0.145...v1.0.148) Updates `roaring` from 0.11.2 to 0.11.3 - [Release notes](https://github.com/RoaringBitmap/roaring-rs/releases) - [Commits](RoaringBitmap/roaring-rs@v0.11.2...v0.11.3) --- updated-dependencies: - dependency-name: tracing dependency-version: 0.1.44 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-version: 1.0.148 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: roaring dependency-version: 0.11.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b9f0dc3 commit 3cd705f

File tree

8 files changed

+25
-25
lines changed

8 files changed

+25
-25
lines changed

Cargo.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/epkv-epaxos/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ rand = "0.9.2"
1919
scopeguard = "1.2.0"
2020
serde = { version = "1.0.228", features = ["derive"] }
2121
tokio = { version = "1.48.0", features = ["full"] }
22-
tracing = "0.1.43"
22+
tracing = "0.1.44"

crates/epkv-eval/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ futures-util = "0.3.31"
1717
numeric_cast = "0.3.0"
1818
rand = "0.9.2"
1919
serde = { version = "1.0.228", features = ["derive"] }
20-
serde_json = "1.0.145"
20+
serde_json = "1.0.148"
2121
simdutf8 = "0.1.5"
2222
tikv-jemallocator = "0.5.4"
2323
tokio = { version = "1.48.0", features = ["full"] }

crates/epkv-monitor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ epkv-protocol = { path = "../epkv-protocol" }
1212
epkv-utils = { path = "../epkv-utils" }
1313
parking_lot = "0.12.5"
1414
serde = { version = "1.0.228", features = ["derive", "rc"] }
15-
serde_json = "1.0.145"
15+
serde_json = "1.0.148"
1616
tikv-jemallocator = "0.5.4"
1717
tokio = { version = "1.48.0", features = ["full"] }
1818
toml = "0.9.8"
19-
tracing = "0.1.43"
19+
tracing = "0.1.44"
2020
wgp = "0.2.0"

crates/epkv-protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ ordered-vecmap = { version = "0.2.0", features = ["serde"] }
1515
scopeguard = "1.2.0"
1616
serde = { version = "1.0.228", features = ["derive"] }
1717
tokio = { version = "1.48.0", features = ["full"] }
18-
tracing = "0.1.43"
18+
tracing = "0.1.44"
1919
wgp = "0.2.0"

crates/epkv-rocks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ordered-vecmap = { version = "0.2.0", features = ["serde"] }
1616
parking_lot = "0.12.5"
1717
serde = { version = "1.0.228", features = ["derive"] }
1818
tokio = { version = "1.48.0", features = ["full"] }
19-
tracing = "0.1.43"
19+
tracing = "0.1.44"
2020

2121
[dependencies.rocksdb]
2222
git = "https://github.com/rust-rocksdb/rust-rocksdb.git"

crates/epkv-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ serde = { version = "1.0.228", features = ["derive", "rc"] }
2121
tikv-jemallocator = "0.5.4"
2222
tokio = { version = "1.48.0", features = ["full"] }
2323
toml = "0.9.8"
24-
tracing = "0.1.43"
24+
tracing = "0.1.44"
2525
wgp = "0.2.0"

crates/epkv-utils/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ numeric_cast = "0.3.0"
1515
once_cell = "1.21.3"
1616
ordered-vecmap = { version = "0.2.0", features = ["serde"] }
1717
parking_lot = "0.12.5"
18-
roaring = "0.11.2"
18+
roaring = "0.11.3"
1919
serde = { version = "1.0.228", features = ["derive"] }
20-
serde_json = "1.0.145"
20+
serde_json = "1.0.148"
2121
simdutf8 = "0.1.5"
2222
tokio = { version = "1.48.0", features = ["full"] }
2323
tokio-util = { version = "0.7.17", features = ["codec"] }
2424
toml = "0.9.8"
25-
tracing = "0.1.43"
25+
tracing = "0.1.44"
2626
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "time"] }
2727
triomphe = { version = "0.1.15", default-features = false, features = ["std", "serde"] }

0 commit comments

Comments
 (0)