Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 25 additions & 4 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ clap = { version = "4.5.60", default-features = false, features = ["derive", "er
clap_complete = "4.5.66"
colored = { version = "3.1.1", default-features = false }
const-str = { version = "1.1.0", default-features = false }
criterion = "0.8"
crossbeam-utils = { version = "0.8.21", default-features = false }
darling = { version = "0.20.11", default-features = false, features = ["suggestions"] }
dashmap = { version = "6.1.0", default-features = false }
Expand Down Expand Up @@ -479,7 +480,7 @@ approx = "0.5.1"
assert_cmd = { version = "2.0.17", default-features = false }
aws-smithy-runtime = { version = "1.8.3", default-features = false, features = ["tls-rustls"] }
base64 = "0.22.1"
criterion = { version = "0.7.0", features = ["html_reports", "async_tokio"] }
criterion = { workspace = true, features = ["html_reports", "async_tokio"] }
itertools.workspace = true
libc.workspace = true
mock_instant.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion lib/dnsmsg-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ hickory-proto.workspace = true
snafu.workspace = true

[dev-dependencies]
criterion = "0.7"
criterion.workspace = true

[lib]
bench = false
Expand Down
2 changes: 1 addition & 1 deletion lib/tracing-limit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ tracing-subscriber = { workspace = true, features = ["registry", "std"] }
dashmap = { version = "6.1.0", default-features = false }

[dev-dependencies]
criterion = "0.7"
criterion.workspace = true
mock_instant.workspace = true
serial_test.workspace = true
tracing = "0.1.44"
Expand Down
2 changes: 1 addition & 1 deletion lib/vector-buffers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ordered-float.workspace = true

[dev-dependencies]
clap.workspace = true
criterion = { version = "0.7", features = ["html_reports", "async_tokio"] }
criterion = { workspace = true, features = ["html_reports", "async_tokio"] }
crossbeam-queue = "0.3.12"
hdrhistogram = "7.5.4"
metrics-tracing-context.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion lib/vector-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ prost-build.workspace = true
[dev-dependencies]
base64 = "0.22.1"
chrono-tz.workspace = true
criterion = { version = "0.7.0", features = ["html_reports"] }
criterion = { workspace = true, features = ["html_reports"] }
env-test-util = "1.0.1"
quickcheck.workspace = true
quickcheck_macros = "1"
Expand Down
Loading