Skip to content

Commit 36882b6

Browse files
authored
feat(runtime): Add series implementation for event recorder (#1655)
Signed-off-by: Alexander Gil <[email protected]>
1 parent 419442b commit 36882b6

File tree

3 files changed

+305
-90
lines changed

3 files changed

+305
-90
lines changed

Cargo.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,19 @@ form_urlencoded = "1.2.0"
4848
futures = { version = "0.3.17", default-features = false }
4949
hashbrown = "0.15.0"
5050
home = "0.5.4"
51+
hostname = "0.3"
5152
http = "1.1.0"
5253
http-body = "1.0.1"
5354
http-body-util = "0.1.2"
5455
hyper = "1.2.0"
55-
hyper-util = "0.1.9"
5656
hyper-openssl = "0.10.2"
5757
hyper-rustls = { version = "0.27.1", default-features = false }
5858
hyper-socks2 = { version = "0.9.0", default-features = false }
5959
hyper-timeout = "0.5.1"
60+
hyper-util = "0.1.9"
6061
json-patch = "3"
61-
jsonptr = "0.6"
6262
jsonpath-rust = "0.7.3"
63+
jsonptr = "0.6"
6364
k8s-openapi = { version = "0.23.0", default-features = false }
6465
openssl = "0.10.36"
6566
parking_lot = "0.12.0"
@@ -74,8 +75,8 @@ schemars = "0.8.6"
7475
secrecy = "0.10.2"
7576
serde = "1.0.130"
7677
serde_json = "1.0.68"
77-
serde-value = "0.7.0"
7878
serde_yaml = "0.9.19"
79+
serde-value = "0.7.0"
7980
syn = "2.0.38"
8081
tame-oauth = "0.10.0"
8182
tempfile = "3.1.0"

kube-runtime/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ hashbrown.workspace = true
4949
k8s-openapi.workspace = true
5050
async-broadcast.workspace = true
5151
async-stream.workspace = true
52+
hostname.workspace = true
5253

5354
[dev-dependencies]
5455
kube = { path = "../kube", features = ["derive", "client", "runtime"], version = "<1.0.0, >=0.60.0" }

0 commit comments

Comments
 (0)