Skip to content

Commit 295c8c4

Browse files
authored
Remove lading_capture protobuf export (#996)
* Remove lading_capture protobuf export This commit removes the protobuf version of the lading capture. It is unused today. Signed-off-by: Brian L. Troutwine <[email protected]> * security audit ding Signed-off-by: Brian L. Troutwine <[email protected]> * toml fix Signed-off-by: Brian L. Troutwine <[email protected]> * update cargo.lock Signed-off-by: Brian L. Troutwine <[email protected]> --------- Signed-off-by: Brian L. Troutwine <[email protected]>
1 parent 15a6f09 commit 295c8c4

File tree

12 files changed

+160
-286
lines changed

12 files changed

+160
-286
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## Unreleased
8+
### Removed
9+
- lading_capture no longer exports a protobuf version of the capture.
10+
711
## [0.23.2]
812
### Changed
913
- Now built using rust 1.81.0.

Cargo.lock

+23-109
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ metrics-exporter-prometheus = { version = "0.15.3", default-features = false, fe
1919
"uds-listener",
2020
] }
2121
prost = "0.11"
22-
prost-build = { version = "0.12" }
2322
rand = { version = "0.8", default-features = false }
2423
rustc-hash = { version = "1.1" }
2524
serde = { version = "1.0", features = ["std", "derive"] }
@@ -28,7 +27,7 @@ thiserror = { version = "1.0" }
2827
tokio = { version = "1.40" }
2928
tracing = { version = "0.1" }
3029
uuid = { version = "1.6", default-features = false, features = ["v4", "serde"] }
31-
30+
once_cell = { version = "1.19" }
3231

3332
[profile.release]
3433
lto = true # Optimize our binary at link stage.

integration/ducks/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ publish = false
99

1010
[dependencies]
1111
anyhow = "1.0"
12-
bytes = "1.7"
12+
bytes = { workspace = true }
1313
entropy = "0.4"
1414
hyper = { version = "0.14", features = ["server"] }
15-
once_cell = "1.18"
16-
serde_json = "1.0"
15+
once_cell = { workspace = true }
16+
serde_json = { workspace = true }
1717
shared = { path = "../shared" }
1818
sketches-ddsketch = "0.3"
19-
tokio = { version = "1.40", features = [
19+
tokio = { workspace = true, features = [
2020
"rt",
2121
"macros",
2222
"fs",

lading/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ categories = ["development-tools::profiling"]
1515
description = "A tool for load testing daemons."
1616

1717
[dependencies]
18-
lading-capture = { version = "0.1", path = "../lading_capture" }
18+
lading-capture = { version = "0.2", path = "../lading_capture" }
1919
lading-payload = { version = "0.1", path = "../lading_payload" }
2020
lading-throttle = { version = "0.1", path = "../lading_throttle" }
2121
lading-signal = { version = "0.1", path = "../lading_signal" }
@@ -46,7 +46,7 @@ nix = { version = "0.29", default-features = false, features = [
4646
"signal",
4747
] }
4848
num_cpus = { version = "1.16" }
49-
once_cell = { version = "1.18" }
49+
once_cell = { workspace = true }
5050
rand = { workspace = true, default-features = false, features = [
5151
"small_rng",
5252
"std",

lading_capture/Cargo.toml

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lading-capture"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
authors = [
55
"Brian L. Troutwine <[email protected]>",
66
"George Hahn <[email protected]",
@@ -13,14 +13,10 @@ categories = ["development-tools::profiling"]
1313
description = "A tool for load testing daemons."
1414

1515
[dependencies]
16-
prost = { workspace = true }
1716
rustc-hash = { workspace = true }
1817
serde = { workspace = true }
1918
serde_json = { workspace = true }
2019
uuid = { workspace = true, features = ["serde", "v4"] }
2120

22-
[build-dependencies]
23-
prost-build = { workspace = true }
24-
2521
[lib]
2622
doctest = false

lading_capture/build.rs

-14
This file was deleted.

0 commit comments

Comments
 (0)